diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/sshfs/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/sshfs/PKGBUILD')
-rw-r--r-- | extra/sshfs/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/sshfs/PKGBUILD b/extra/sshfs/PKGBUILD new file mode 100644 index 000000000..4a29c7d84 --- /dev/null +++ b/extra/sshfs/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 68119 2010-02-10 20:04:33Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=sshfs +pkgver=2.2 +pkgrel=3 +pkgdesc="FUSE client based on the SSH File Transfer Protocol" +arch=('i686' 'x86_64') +url="http://fuse.sourceforge.net/sshfs.html" +license=('GPL') +depends=('fuse' 'glib2' 'openssh') +makedepends=('pkgconfig') +source=(http://downloads.sourceforge.net/sourceforge/fuse/${pkgname}-fuse-${pkgver}.tar.gz) +md5sums=('26e9206eb5169e87e6f95f54bc005a4f') + +build() { + cd "${srcdir}/${pkgname}-fuse-${pkgver}" + + ./configure --prefix=/usr + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |