diff options
author | Andy Postnikov <apostnikov@gmail.com> | 2018-09-04 23:55:35 +0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-05 18:39:42 +0000 |
commit | 17aeb35be7fb4dbc3b1d13fe918d83ee4070d6d1 (patch) | |
tree | b1042dc7f5b22d1ae8887c5974bbc5a0b54174ad | |
parent | 00ec7e2aeb2a4e04439adf2677b6c017710a0caa (diff) | |
download | aports-17aeb35be7fb4dbc3b1d13fe918d83ee4070d6d1.tar.bz2 aports-17aeb35be7fb4dbc3b1d13fe918d83ee4070d6d1.tar.xz |
main/sshfs: upgrade to 3.5.0 and modernize
-rw-r--r-- | main/sshfs/APKBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/main/sshfs/APKBUILD b/main/sshfs/APKBUILD index fd50bc067e..c8fef8a741 100644 --- a/main/sshfs/APKBUILD +++ b/main/sshfs/APKBUILD @@ -1,6 +1,6 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=sshfs -pkgver=3.4.0 +pkgver=3.5.0 pkgrel=0 pkgdesc="FUSE client based on the SSH File Transfer Protocol" url="https://github.com/libfuse/sshfs" @@ -10,11 +10,10 @@ depends="openssh-client" makedepends="fuse3-dev glib-dev meson coreutils" subpackages="$pkgname-doc" source="https://github.com/libfuse/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz" -options="!check" +options="!check" # requires FUSE kernel module to run tests builddir="$srcdir/$pkgname-$pkgver" -build () { - cd "$builddir" +build() { cd "$builddir" meson \ --prefix=/usr \ @@ -34,4 +33,4 @@ package() { install -Dm644 AUTHORS COPYING "$pkgdir"/usr/share/doc/$pkgname/ } -sha512sums="7ead7168644cee5722a5252031e117215349f3adde32d35fb13bf9a8448c15c49ed9cff7eba9248e71da9c63c4cf7a3da078718890e56e0c624aec2d5f0e546b sshfs-3.4.0.tar.xz" +sha512sums="6ba7be4bcad401d99fb864f105a6c8fc8b7c832d5b25f18cba27eee422fe65ee7bda8982466d624792a1fb21528c0cb078a59db48e93da4880a36aad7b506b0c sshfs-3.5.0.tar.xz" |