mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
613 B
Bash
21 lines
613 B
Bash
# $Id: PKGBUILD 53606 2009-10-03 00:21:14Z giovanni $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
|
|
pkgname=sshfs
|
|
pkgver=2.2
|
|
pkgrel=2
|
|
pkgdesc="FUSE client based on the SSH File Transfer Protocol."
|
|
arch=('i686' 'x86_64')
|
|
url="http://fuse.sourceforge.net/sshfs.html"
|
|
license=('GPL2')
|
|
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
|
|
}
|