diff options
Diffstat (limited to 'community/sshfs/PKGBUILD')
-rw-r--r-- | community/sshfs/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/sshfs/PKGBUILD b/community/sshfs/PKGBUILD new file mode 100644 index 000000000..05b1a8546 --- /dev/null +++ b/community/sshfs/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 102191 2013-12-06 12:45:33Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=sshfs +pkgver=2.4 +pkgrel=1.1 +pkgdesc="FUSE client based on the SSH File Transfer Protocol" +arch=('i686' 'x86_64' 'mips64el') +url="http://fuse.sourceforge.net/sshfs.html" +license=('GPL') +depends=('fuse' 'glib2' 'openssh') +makedepends=('pkg-config') +source=("http://downloads.sourceforge.net/sourceforge/fuse/${pkgname}-fuse-${pkgver}.tar.gz") +md5sums=('3c7c3647c52ce84d09486f1da3a3ce24') + +build() { + cd "${srcdir}/${pkgname}-fuse-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-fuse-${pkgver}" + + make DESTDIR="${pkgdir}" install +} |