diff options
author | Erich Eckner <git@eckner.net> | 2022-12-01 13:52:44 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-12-01 13:52:44 +0100 |
commit | ae25a064afe638bfcbd91e4ef334bc4e9445e24d (patch) | |
tree | 4fd994776fd0c824df0f9963f1a93d557b157b58 /manualPorts | |
parent | 82fadd834c8ab77409e7c62a82b08d80641dd5cc (diff) | |
download | crux-ports-ae25a064afe638bfcbd91e4ef334bc4e9445e24d.tar.xz |
falsisign new
Diffstat (limited to 'manualPorts')
-rw-r--r-- | manualPorts/falsisign/.footprint | 14 | ||||
-rw-r--r-- | manualPorts/falsisign/.md5sum | 1 | ||||
-rw-r--r-- | manualPorts/falsisign/.signature | 5 | ||||
-rw-r--r-- | manualPorts/falsisign/Pkgfile | 20 |
4 files changed, 40 insertions, 0 deletions
diff --git a/manualPorts/falsisign/.footprint b/manualPorts/falsisign/.footprint new file mode 100644 index 0000000..7c4981f --- /dev/null +++ b/manualPorts/falsisign/.footprint @@ -0,0 +1,14 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/falsicoord.py +-rwxr-xr-x root/root usr/bin/falsisign.sh +-rwxr-xr-x root/root usr/bin/signdiv.sh +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/doc/ +drwxr-xr-x root/root usr/share/doc/falsisign/ +-rw-r--r-- root/root usr/share/doc/falsisign/LICENSE +-rw-r--r-- root/root usr/share/doc/falsisign/README.org +-rw-r--r-- root/root usr/share/doc/falsisign/Signature_example.pdf +-rw-r--r-- root/root usr/share/doc/falsisign/Signature_guide.pdf +-rw-r--r-- root/root usr/share/doc/falsisign/Signature_guide.xcf +-rw-r--r-- root/root usr/share/doc/falsisign/falsiscan.png diff --git a/manualPorts/falsisign/.md5sum b/manualPorts/falsisign/.md5sum new file mode 100644 index 0000000..0b51ba1 --- /dev/null +++ b/manualPorts/falsisign/.md5sum @@ -0,0 +1 @@ +761d8a10a6a6b4dcb2c3668ecfbead1d falsisign-3ff24f0ceaf8bb12d07902a24f8f90c8b24fea38.tar.gz diff --git a/manualPorts/falsisign/.signature b/manualPorts/falsisign/.signature new file mode 100644 index 0000000..4e1867c --- /dev/null +++ b/manualPorts/falsisign/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/deepthought.pub +RWQxCptPusLGGh1du44J2j+l5PQW5ax6KtNbyQ5Ilkcg+YkH5tKtPdFO5UsE2JGvBT2H0uNp1UPw0bcSQJ88Q2ssUznzTEmmrA0= +SHA256 (Pkgfile) = 1077c646755b21aa7f38a014b4f4bb4b073532506de69ee4c316d53ed62a265e +SHA256 (.footprint) = 866b290ba8bac5f3284f2f170264bcdd1c9b0c1ef3821ab52d055168b208634c +SHA256 (falsisign-3ff24f0ceaf8bb12d07902a24f8f90c8b24fea38.tar.gz) = 3f878fefabc67b368a9b82042d31525a6ab6b9a172a0d06c02abf5282cd65a73 diff --git a/manualPorts/falsisign/Pkgfile b/manualPorts/falsisign/Pkgfile new file mode 100644 index 0000000..a22474a --- /dev/null +++ b/manualPorts/falsisign/Pkgfile @@ -0,0 +1,20 @@ +# Description: Virtually print, sign and scan documents. +# URL: https://gitlab.com/edouardklein/falsisign +# Maintainer: Erich Eckner, crux at eckner dot net +# Depends on: bash python imagemagick ghostscript + +_commit=3ff24f0ceaf8bb12d07902a24f8f90c8b24fea38 +name=falsisign +version=0.0.0 +release=1 +source=("https://gitlab.com/edouardklein/falsisign/-/archive/${_commit}/falsisign-${_commit}.tar.gz") + +build() { + + cd "${name}-${_commit}" + grep -qxF "${version}" 'VERSION' + make test + install -m755 -Dt "$PKG/usr/bin" falsisign.sh falsicoord.py signdiv.sh + install -m644 -Dt "$PKG/usr/share/doc/falsisign" falsiscan.png Signature_* README.org LICENSE + +} |