diff options
author | Christian Kampka <christian@kampka.net> | 2015-11-10 07:21:22 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-10 13:10:14 +0000 |
commit | bc53e01876916646ac8b05d0ace44377a1997a79 (patch) | |
tree | e1db01cea51652ceb93c71e9aeea5164e84a3087 | |
parent | 575dd1c681d72cd4d3074f4fde50bdc4d6bb9f3f (diff) | |
download | aports-bc53e01876916646ac8b05d0ace44377a1997a79.tar.bz2 aports-bc53e01876916646ac8b05d0ace44377a1997a79.tar.xz |
main/sshfs: add doc subpackage
-rw-r--r-- | main/sshfs/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/sshfs/APKBUILD b/main/sshfs/APKBUILD index a74cd793fc..07c60c77c2 100644 --- a/main/sshfs/APKBUILD +++ b/main/sshfs/APKBUILD @@ -1,18 +1,19 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=sshfs pkgver=2.5 -pkgrel=0 +pkgrel=1 pkgdesc="FUSE client based on the SSH File Transfer Protocol" url="http://fuse.sourceforge.net/sshfs.html" arch="all" license="GPL" depends="openssh-client" makedepends="fuse-dev glib-dev" +subpackages="$pkgname-doc" source="http://downloads.sourceforge.net/sourceforge/fuse/sshfs-fuse-$pkgver.tar.gz" _builddir="$srcdir"/sshfs-fuse-$pkgver -build () -{ +build () +{ cd "$_builddir" ./configure \ --build=$CBUILD \ |