summaryrefslogtreecommitdiff
path: root/manualPorts/bindfs
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/bindfs')
-rw-r--r--manualPorts/bindfs/.footprint7
-rw-r--r--manualPorts/bindfs/.md5sum1
-rw-r--r--manualPorts/bindfs/.signature5
-rw-r--r--manualPorts/bindfs/Pkgfile19
-rwxr-xr-xmanualPorts/bindfs/lastVersion.sh8
5 files changed, 40 insertions, 0 deletions
diff --git a/manualPorts/bindfs/.footprint b/manualPorts/bindfs/.footprint
new file mode 100644
index 0000000..ced3556
--- /dev/null
+++ b/manualPorts/bindfs/.footprint
@@ -0,0 +1,7 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/bindfs
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/bindfs.1.gz
diff --git a/manualPorts/bindfs/.md5sum b/manualPorts/bindfs/.md5sum
new file mode 100644
index 0000000..cea1464
--- /dev/null
+++ b/manualPorts/bindfs/.md5sum
@@ -0,0 +1 @@
+87f3f172cc308a940bc783fe35ff647b bindfs-1.13.9.tar.gz
diff --git a/manualPorts/bindfs/.signature b/manualPorts/bindfs/.signature
new file mode 100644
index 0000000..9b08fc3
--- /dev/null
+++ b/manualPorts/bindfs/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGufkRTBum3atyst5s3nlEHeBbXG2rBig3qX0M9mtIrUdJ5qGjVk6EsEqLJI4BGoDjNFhKKKhfoVWZHgTn5f4fAw=
+SHA256 (Pkgfile) = 547c0e4cc719391dc2f68f644605ca7ee46341513d611bd000a1052e0b30ea7c
+SHA256 (.footprint) = cf28ebc22af5d8ba8e9e190fab52d15794e537689962c0771474a98cfc33ac73
+SHA256 (bindfs-1.13.9.tar.gz) = acfa2ca9d604f4147c42758ccbb4a429855df26768dfe70521ba5d7a0596f8b5
diff --git a/manualPorts/bindfs/Pkgfile b/manualPorts/bindfs/Pkgfile
new file mode 100644
index 0000000..fc84736
--- /dev/null
+++ b/manualPorts/bindfs/Pkgfile
@@ -0,0 +1,19 @@
+# Description: A FUSE filesystem for mirroring a directory to another directory, similar to 'mount --bind', with permission settings.
+# URL: http://bindfs.org/
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Depends on: fuse
+
+name=bindfs
+version=1.13.9
+release=1
+source=("https://bindfs.org/downloads/${name}-${version}.tar.gz")
+
+build() {
+
+ cd ${name}-${version}
+
+ ./configure --prefix=/usr
+ make CPUOPTIMIZATIONS="${CFLAGS}"
+ make DESTDIR=$PKG install
+
+}
diff --git a/manualPorts/bindfs/lastVersion.sh b/manualPorts/bindfs/lastVersion.sh
new file mode 100755
index 0000000..05a6213
--- /dev/null
+++ b/manualPorts/bindfs/lastVersion.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+curl 'https://bindfs.org/downloads/' 2> /dev/null | \
+ tr '<>"' '\n' | \
+ grep '^bindfs-[0-9.]\+\.tar\.gz$' | \
+ sed 's|^bindfs-\([0-9.]\+\)\.tar\.gz$|\1|' | \
+ sort -V | \
+ tail -n1