summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorXyne2022-06-10 23:05:28 +0200
committerXyne2022-06-10 23:06:16 +0200
commit3b01afeaea485662e4c30e0481db70f8c4ec1fa6 (patch)
tree82d7b72138f63e37dfa6bd3bdd7e1bab0d01e57a
parentc3485abbe5abd25777386e8b71e06d6074cab9e7 (diff)
downloadaur-3b01afeaea485662e4c30e0481db70f8c4ec1fa6.tar.gz
Add mount.bindfs and mount.fuse.bindfs symlinks
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f0e8cee9dcb9..64b374446e94 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = bindfs
pkgdesc = A FUSE filesystem for mirroring a directory to another directory, similar to 'mount --bind', with permission settings.
pkgver = 1.15.1
- pkgrel = 2
+ pkgrel = 3
url = http://bindfs.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index a2c85b4e7310..c5dd4d6f3b04 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=bindfs
pkgver=1.15.1
-pkgrel=2
+pkgrel=3
pkgdesc="A FUSE filesystem for mirroring a directory to another directory, similar to 'mount --bind', with permission settings."
arch=('i686' 'x86_64' 'armv6h' 'armv6l' 'armv7h')
url="http://bindfs.org/"
@@ -22,4 +22,6 @@ build() {
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
+ ln -s bindfs "$pkgdir/usr/bin/mount.bindfs"
+ ln -s bindfs "$pkgdir/usr/bin/mount.fuse.bindfs"
}