core/sshfs/PKGBUILD

34 lines
771 B
Bash
Raw Normal View History

2010-05-22 06:07:29 +08:00
pkgname=sshfs
2018-04-30 18:48:10 +08:00
pkgver=3.3.2
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')
2018-04-30 18:48:10 +08:00
depends=('fuse3' 'glib2' 'openssh')
2017-10-23 06:10:01 +08:00
makedepends=('meson' 'python3-docutils')
2018-04-30 18:48:10 +08:00
source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
sha256sums=('a4da6af0ac4f39606eefd0fd7ca09267fbb90e274081570a700f911fca387e4c'
'SKIP')
2017-10-23 06:10:01 +08:00
validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath <Nikolaus@rath.org>
2010-05-22 06:07:29 +08:00
2017-10-23 06:10:01 +08:00
prepare() {
cd $pkgname-$pkgver
rm -rf build
mkdir build
cd build
chakra-meson ..
}
2010-05-22 06:07:29 +08:00
2017-10-23 06:10:01 +08:00
build() {
cd $pkgname-$pkgver/build
ninja
2012-10-03 02:53:54 +08:00
}
package() {
2017-10-23 06:10:01 +08:00
cd $pkgname-$pkgver/build
2012-10-03 02:53:54 +08:00
2017-10-23 06:10:01 +08:00
DESTDIR="$pkgdir" ninja install
2010-05-22 06:07:29 +08:00
}