Date: Friday, September 22, 2017 @ 22:36:02 Author: grazzolini Revision: 259816
upgpkg: sshfs 3.3.0-2 Add python-docutils to makedepends to generate man pages Modified: sshfs/trunk/PKGBUILD ----------+ PKGBUILD | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-09-22 21:59:05 UTC (rev 259815) +++ PKGBUILD 2017-09-22 22:36:02 UTC (rev 259816) @@ -5,13 +5,13 @@ pkgname=sshfs pkgver=3.3.0 -pkgrel=1 +pkgrel=2 pkgdesc="FUSE client based on the SSH File Transfer Protocol" arch=(x86_64 i686) url="http://github.com/libfuse/sshfs" license=(GPL) depends=(fuse3 glib2 openssh) -makedepends=(meson) +makedepends=('meson' 'python-docutils') source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$pkgver/sshfs-$pkgver.tar.xz{,.asc}) sha256sums=('9ddfcc2564fafe002706b093b6295afbcb2cc0a3bc52bc805cc5361cb69ca51d' 'SKIP') @@ -22,7 +22,7 @@ [[ $CARCH == 'i686' ]] && export CFLAGS+=" -D_FILE_OFFSET_BITS=64" rm -rf build - meson setup . build + meson setup --prefix=/usr --sbindir=bin . build cd build ninja } @@ -30,6 +30,5 @@ package() { cd $pkgname-$pkgver/build - meson configure -Dprefix=/usr -Dsbindir=bin DESTDIR="$pkgdir" ninja install }
