diff options
author | Erich Eckner <git@eckner.net> | 2022-12-02 13:30:01 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-12-02 13:31:26 +0100 |
commit | a2a23e763e642d3a3c851e48486d543ea09c3f35 (patch) | |
tree | 3f8be2ee27df9782921177a26f185c9a1544c6e5 /manualPorts | |
parent | 1ba287072f3589d72ed27fbecb3e3f1ff4642112 (diff) | |
download | crux-ports-a2a23e763e642d3a3c851e48486d543ea09c3f35.tar.xz |
falsisign: clean up
Diffstat (limited to 'manualPorts')
-rw-r--r-- | manualPorts/falsisign/.footprint | 9 | ||||
-rw-r--r-- | manualPorts/falsisign/.signature | 6 | ||||
-rw-r--r-- | manualPorts/falsisign/Pkgfile | 10 |
3 files changed, 12 insertions, 13 deletions
diff --git a/manualPorts/falsisign/.footprint b/manualPorts/falsisign/.footprint index 7c4981f..188574b 100644 --- a/manualPorts/falsisign/.footprint +++ b/manualPorts/falsisign/.footprint @@ -1,14 +1,11 @@ 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 +-rwxr-xr-x root/root usr/bin/falsicoord +-rwxr-xr-x root/root usr/bin/falsisign +-rwxr-xr-x root/root usr/bin/signdiv 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/.signature b/manualPorts/falsisign/.signature index 3fa1156..7819b03 100644 --- a/manualPorts/falsisign/.signature +++ b/manualPorts/falsisign/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/deepthought.pub -RWQxCptPusLGGqmIQAmyrjnw5b02fBgTlJ5G/J84c50EgzbNiND3TKL6BCX9+L3wStTQf+s2w9N8rivgmw+Qp8sQNS231v5F8AU= -SHA256 (Pkgfile) = fbabb6c3fb7ac60837860f5d8f70e6698951097ceeb96e0c020ecd9786170e9a -SHA256 (.footprint) = 866b290ba8bac5f3284f2f170264bcdd1c9b0c1ef3821ab52d055168b208634c +RWQxCptPusLGGm5Lje8qdf2C+wIWvM0KUK4VdQkmEoHChrBd6UUj/lHgtadnuBcO9r29QPLCz2nzuf3fdOv8fwjccsqVY3vUjw0= +SHA256 (Pkgfile) = 922f23ef37ce6fee9bce8dbe04bb59553d229ab0cb843ca6da873c2c12a3a131 +SHA256 (.footprint) = 9f9d62404c1ef45525a63975639e1254c1c88a168f91591fb12d799b799aaa51 SHA256 (falsisign-3ff24f0ceaf8bb12d07902a24f8f90c8b24fea38.tar.gz) = 3f878fefabc67b368a9b82042d31525a6ab6b9a172a0d06c02abf5282cd65a73 diff --git a/manualPorts/falsisign/Pkgfile b/manualPorts/falsisign/Pkgfile index 6169808..1b4790a 100644 --- a/manualPorts/falsisign/Pkgfile +++ b/manualPorts/falsisign/Pkgfile @@ -1,7 +1,7 @@ # 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 +# Depends on: bash python3 imagemagick ghostscript _commit=3ff24f0ceaf8bb12d07902a24f8f90c8b24fea38 name=falsisign @@ -14,8 +14,10 @@ build() { cd "${name}-${_commit}" grep -qxF "${version}" 'VERSION' sed -i '1 s@\bpython\b@\03@' *.py - 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 + convert Signature_guide.{xcf,pdf} + install -m755 -D falsisign.sh "$PKG/usr/bin/falsisign" + install -m755 -D falsicoord.py "$PKG/usr/bin/falsicoord" + install -m755 -D signdiv.sh "$PKG/usr/bin/signdiv" + install -m644 -Dt "$PKG/usr/share/doc/falsisign" Signature_guide.pdf README.org LICENSE } |