diff options
author | Erich Eckner <git@eckner.net> | 2019-10-15 21:45:57 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-10-15 21:45:57 +0200 |
commit | 4e25cadfb4f09359448c451f2e0b258846dd75cb (patch) | |
tree | 81f552290245000aac5e5a2dace284b02076283b /manualPorts/barcode | |
parent | 9c6e091f6abeabc5e10e5b93713314cc1bec8588 (diff) | |
download | crux-ports-4e25cadfb4f09359448c451f2e0b258846dd75cb.tar.xz |
barcode new
Diffstat (limited to 'manualPorts/barcode')
-rw-r--r-- | manualPorts/barcode/.footprint | 8 | ||||
-rw-r--r-- | manualPorts/barcode/.md5sum | 1 | ||||
-rw-r--r-- | manualPorts/barcode/.signature | 5 | ||||
-rw-r--r-- | manualPorts/barcode/Pkgfile | 19 |
4 files changed, 33 insertions, 0 deletions
diff --git a/manualPorts/barcode/.footprint b/manualPorts/barcode/.footprint new file mode 100644 index 0000000..652c64a --- /dev/null +++ b/manualPorts/barcode/.footprint @@ -0,0 +1,8 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/barcode +-rwxr-xr-x root/root usr/bin/sample +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/barcode.info +-rw-r--r-- root/root usr/share/info/dir diff --git a/manualPorts/barcode/.md5sum b/manualPorts/barcode/.md5sum new file mode 100644 index 0000000..ed5ff4b --- /dev/null +++ b/manualPorts/barcode/.md5sum @@ -0,0 +1 @@ +cdc504ee1020e27fbfeebcb0718de054 barcode-0.99.tar.xz diff --git a/manualPorts/barcode/.signature b/manualPorts/barcode/.signature new file mode 100644 index 0000000..08ac7a8 --- /dev/null +++ b/manualPorts/barcode/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/deepthought.pub +RWQxCptPusLGGiak7d4jJCN/8n8I1H2zwuoONsJOZ1yp4qE4OmfsR5wnqpEEzJlPQiQMICnKbGOc82ZNDemHgzV1xFfrXXqY4wY= +SHA256 (Pkgfile) = a553f671d1a8028d53ae45c9422599179a3c49f7d7b225b70c5f85d3a63e42a0 +SHA256 (.footprint) = fb28c709780c3c158faf187ac18df35f73d96ab446ff996d0d7673cc28640869 +SHA256 (barcode-0.99.tar.xz) = e87ecf6421573e17ce35879db8328617795258650831affd025fba42f155cdc6 diff --git a/manualPorts/barcode/Pkgfile b/manualPorts/barcode/Pkgfile new file mode 100644 index 0000000..faf8d70 --- /dev/null +++ b/manualPorts/barcode/Pkgfile @@ -0,0 +1,19 @@ +# Description: Convert text strings to printed bars. +# URL: https://directory.fsf.org/wiki/Barcode +# Maintainer: Erich Eckner, crux at eckner dot net +# Depends on: + +name=barcode +version=0.99 +release=1 +source=("https://ftp.gnu.org/gnu/${name}/${name}-${version}.tar.xz") + +build() { + + cd ${name}-${version} + ./configure --prefix=/usr + make + make check + make DESTDIR=$PKG install + +} |