diff options
author | Max Rees <maxcrees@me.com> | 2018-09-16 00:56:21 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2018-09-17 15:51:25 -0400 |
commit | a13a5cba375dbb9b56d0df2d9f1a78d4709d50a8 (patch) | |
tree | 33a61eeb7b2ccb634d670df35c35a0997c4f2f8e /user/sshfs/APKBUILD | |
parent | 9122dc3237518aadf0f67473121320c38f6018b5 (diff) | |
download | packages-a13a5cba375dbb9b56d0df2d9f1a78d4709d50a8.tar.gz packages-a13a5cba375dbb9b56d0df2d9f1a78d4709d50a8.tar.bz2 packages-a13a5cba375dbb9b56d0df2d9f1a78d4709d50a8.tar.xz packages-a13a5cba375dbb9b56d0df2d9f1a78d4709d50a8.zip |
user/sshfs: new package
Diffstat (limited to 'user/sshfs/APKBUILD')
-rw-r--r-- | user/sshfs/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/user/sshfs/APKBUILD b/user/sshfs/APKBUILD new file mode 100644 index 000000000..404c077be --- /dev/null +++ b/user/sshfs/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Max Rees <maxcrees@me.com> +pkgname=sshfs +pkgver=3.5.0 +pkgrel=0 +pkgdesc="FUSE client based on the SSH File Transfer Protocol" +url="https://github.com/libfuse/sshfs" +arch="all" +options="!check" # Requires fuse kernel module to be loaded and local ssh server +license="GPL-2.0-only AND GPL-2.0+ AND LGPL-2.1-only" +depends="openssh-client" +makedepends="fuse3-dev glib-dev meson coreutils py3-docutils" +#checkdepends="py3-pytest debianutils-which" +subpackages="$pkgname-doc" +source="https://github.com/libfuse/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz" + +build() { + cd "$builddir" + # NOTE: --prefix=/ is intentional. If --prefix=/usr, mount(8) will not be + # able to find mount.fuse.sshfs or mount.sshfs - it only looks in /sbin, not + # /usr/sbin. The omission of the absolute slash in --mandir=usr/share/man is + # also intentional - otherwise ninja tries to install the manpage to + # "/sr/share/man/man1" (???) + + meson \ + --prefix=/ \ + --sysconfdir=/etc \ + --mandir=usr/share/man \ + --localstatedir=/var \ + --buildtype=release \ + . output + ninja -C output +} + +check() { + cd "$builddir"/output + python3 -m pytest test/ +} + +package() { + cd "$builddir" + DESTDIR="$pkgdir" ninja -C output install +} + +sha512sums="6ba7be4bcad401d99fb864f105a6c8fc8b7c832d5b25f18cba27eee422fe65ee7bda8982466d624792a1fb21528c0cb078a59db48e93da4880a36aad7b506b0c sshfs-3.5.0.tar.xz" |