core/sshfs/PKGBUILD

24 lines
552 B
Bash
Raw Normal View History

2010-05-22 06:07:29 +08:00
pkgname=sshfs
2017-04-18 21:06:30 +08:00
pkgver=2.9
pkgrel=1
2010-05-22 06:07:29 +08:00
pkgdesc="FUSE client based on the SSH File Transfer Protocol"
arch=('x86_64')
2017-04-18 21:06:30 +08:00
url="http://github.com/libfuse/sshfs"
2010-05-22 06:07:29 +08:00
license=('GPL')
depends=('fuse' 'glib2' 'openssh')
2017-04-18 21:06:30 +08:00
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$pkgver/sshfs-$pkgver.tar.gz)
sha256sums=('46d1e1287ce97255fcb50010355184d8c5585329f73ab1e755217419a8e6e5de')
2010-05-22 06:07:29 +08:00
build() {
2017-04-18 21:06:30 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
2010-05-22 06:07:29 +08:00
./configure --prefix=/usr
2012-10-03 02:53:54 +08:00
make
}
package() {
2017-04-18 21:06:30 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
2012-10-03 02:53:54 +08:00
make DESTDIR="${pkgdir}" install
2010-05-22 06:07:29 +08:00
}