blob: 663d648dd3d738115ca5a69926627e9e090cca6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/mkpkg
# description: SSH filesystem client via FUSE
# url: https://github.com/libfuse/sshfs
name=sshfs
version=3.7.6
release=1
depends=(libfuse glib openssh)
source=(https://github.com/libfuse/$name/releases/download/$name-$version/$name-$version.tar.xz)
sha256sums=(
"6a1bcb31450a077e9cb1b7ff158c71de34db697c3c0da6cb362502131e495893"
)
build() {
cd $name-$version
mkdir build && cd build
meson setup .. \
--prefix=/usr \
--buildtype=release
ninja
DESTDIR=$PKG ninja install
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|