diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-11-01 21:45:53 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-11-01 21:45:53 +0100 |
commit | d966a9ddf01ccc73de7a3bafccc907b3a4427195 (patch) | |
tree | ef0860879c6118c4ebb1a9278914d8c647859383 /testing/fuse3 | |
parent | 2e310b7698ed096fddc61e32af0c049ca5ca8977 (diff) | |
download | aports-d966a9ddf01ccc73de7a3bafccc907b3a4427195.tar.bz2 aports-d966a9ddf01ccc73de7a3bafccc907b3a4427195.tar.xz |
testing/fuse3: fix pkgname to fuse3
Diffstat (limited to 'testing/fuse3')
-rw-r--r-- | testing/fuse3/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testing/fuse3/APKBUILD b/testing/fuse3/APKBUILD index 89a6047ac9..74a771e8e3 100644 --- a/testing/fuse3/APKBUILD +++ b/testing/fuse3/APKBUILD @@ -1,5 +1,6 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=fuse +pkgname=fuse3 +_pkgname=fuse pkgver=3.2.0 pkgrel=0 pkgdesc="The reference implementation of the Linux FUSE (Filesystem in Userspace) interface" @@ -8,12 +9,12 @@ arch="all" license="GPL2" makedepends="gettext-dev linux-headers meson eudev-dev" subpackages="$pkgname-dev $pkgname-doc" -source="https://github.com/libfuse/libfuse/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz +source="https://github.com/libfuse/libfuse/releases/download/$_pkgname-$pkgver/$_pkgname-$pkgver.tar.xz fix-realpath.patch fuse.initd" options="suid" -builddir="$srcdir"/$pkgname-$pkgver +builddir="$srcdir"/$_pkgname-$pkgver build() { cd "$builddir" |