updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / sshfs-noargs / PKGBUILD
blobd74605963afe3863d86ed6ba5dfd0fdc79e36f25
1 # Maintainer: Nathan Hulse <nat.hulse@gmail.com>
2 pkgname=sshfs-noargs
3 pkgver=2.2
4 pkgrel=1
5 pkgdesc="SSHFS without clearing/disabling forwarding of X11 and authentication."
6 arch=('i686' 'x86_64')
7 url="http://fuse.sourceforge.net/sshfs.html"
8 license=('GPL')
9 depends=('fuse' 'glib2' 'openssh')
10 provides=('sshfs')
11 conflicts=('sshfs')
12 makedepends=('pkgconfig')
13 source=("http://downloads.sourceforge.net/sourceforge/fuse/sshfs-fuse-${pkgver}.tar.gz"
14         'sshfs.c.patch')
15 md5sums=('26e9206eb5169e87e6f95f54bc005a4f'
16         '0b7054b7d8fa18d6618abc4e0987067c')
18 build() {
19   patch -p1 < ../sshfs.c.patch
20   cd "${srcdir}/sshfs-fuse-${pkgver}"
21   ./configure --prefix=/usr
22   make || return 1
23   make DESTDIR="${pkgdir}" install || return 1