summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorn17ikh2019-04-29 23:41:14 -0700
committern17ikh2019-04-29 23:44:22 -0700
commit96b9c34531629d1646eaf3b7877439da072a8e96 (patch)
tree3db079b999752a99eb4c0c5460dc6f3ab3b086ad
parentced0df09297cd94fb4cb7e374335cbf591bc62cd (diff)
downloadaur-mhddfs.tar.gz
Adding fuse3 dependency due to upstream bug.
mhddfs doesn't need fuse3, but because of the way fuse-common is split up, the mount.fuse binary won't work without fuse3 being installed alongside due to being linked against libfuse3.so. See: https://bugs.archlinux.org/task/61261
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD5
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d682d1b570ee..27144582349b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,16 @@
# Generated by mksrcinfo v8
-# Fri Jun 29 22:54:36 UTC 2018
+# Tue Apr 30 06:44:08 UTC 2019
pkgbase = mhddfs
pkgdesc = fuse filesystem that combines several mount points into a single one.
pkgver = 0.1.39
- pkgrel = 4
+ pkgrel = 5
url = http://mhddfs.uvw.ru/
arch = i686
arch = x86_64
license = GPL3
makedepends = uthash
depends = fuse
+ depends = fuse3
source = http://mhddfs.uvw.ru/downloads/mhddfs_0.1.39.tar.gz
source = pthreads.patch
source = use_after_free.patch
diff --git a/PKGBUILD b/PKGBUILD
index f8fdae1ae313..0659d30b8da6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,13 @@
pkgname=mhddfs
pkgver=0.1.39
-pkgrel=4
+pkgrel=5
pkgdesc="fuse filesystem that combines several mount points into a single one."
arch=('i686' 'x86_64')
url="http://mhddfs.uvw.ru/"
license=('GPL3')
-depends=('fuse')
+depends=('fuse'
+ 'fuse3')
makedepends=('uthash')
source=("http://mhddfs.uvw.ru/downloads/${pkgname}_${pkgver}.tar.gz"
'pthreads.patch'