summaryrefslogtreecommitdiff
path: root/manualPorts/mounted
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/mounted')
-rw-r--r--manualPorts/mounted/.footprint9
-rw-r--r--manualPorts/mounted/.md5sum1
-rw-r--r--manualPorts/mounted/.signature5
-rw-r--r--manualPorts/mounted/Pkgfile19
-rwxr-xr-xmanualPorts/mounted/lastVersion.sh8
5 files changed, 42 insertions, 0 deletions
diff --git a/manualPorts/mounted/.footprint b/manualPorts/mounted/.footprint
new file mode 100644
index 0000000..369631c
--- /dev/null
+++ b/manualPorts/mounted/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/mounted.conf
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/mounted
+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/mounted.1.gz
diff --git a/manualPorts/mounted/.md5sum b/manualPorts/mounted/.md5sum
new file mode 100644
index 0000000..0d18cc0
--- /dev/null
+++ b/manualPorts/mounted/.md5sum
@@ -0,0 +1 @@
+7dfc7ddd1eebe60c712d6d7e4486456f dl.php?dl=mounted-0.1
diff --git a/manualPorts/mounted/.signature b/manualPorts/mounted/.signature
new file mode 100644
index 0000000..c01fa09
--- /dev/null
+++ b/manualPorts/mounted/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGmi5te1Y6QG3TCbBtLrfb1kC4BT4ZH528kT4dL5hlCCbsB07zyxcbKr2ej4PT3IecimO0DZ9kZ+zKiEHL5h9uA4=
+SHA256 (Pkgfile) = 8086dab582f92d6682a46f77f4f3665047f1fd5da1aab46b6aea18d3f261fcaf
+SHA256 (.footprint) = 8c83fdbcd59a31fd6e6c94e6f5d460b79bf6ea321c991cdacd22bdb76b8a1c50
+SHA256 (dl.php?dl=mounted-0.1) = 84cd9f03389ffb222d117bdb989c682541ee767c28745cd491c13b394b25c3e5
diff --git a/manualPorts/mounted/Pkgfile b/manualPorts/mounted/Pkgfile
new file mode 100644
index 0000000..c46ce9b
--- /dev/null
+++ b/manualPorts/mounted/Pkgfile
@@ -0,0 +1,19 @@
+# Description: Wrapper for use by conky to show mounted partitions
+# URL: https://opensources.eckner.net/?ls=mounted
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Depends on: conky
+
+name=mounted
+version=0.1
+release=1
+source=("https://opensources.eckner.net/dl.php?dl=${name}-${version}")
+
+build() {
+
+ tar -xf *${name}-${version}
+ cd ${name}-${version}
+
+ make
+ make DESTDIR=$PKG install
+
+}
diff --git a/manualPorts/mounted/lastVersion.sh b/manualPorts/mounted/lastVersion.sh
new file mode 100755
index 0000000..b155f8c
--- /dev/null
+++ b/manualPorts/mounted/lastVersion.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+wget -O - "https://opensources.eckner.net/ls.php?ls=mounted" 2> /dev/null | \
+ tr "<>" "\n\n" | \
+ grep "^mounted-" | \
+ sed "s|^mounted-||" | \
+ sort -V | \
+ tail -n1