diff options
author | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
commit | 14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch) | |
tree | 644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/alpine | |
download | crux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz |
initial commit
Diffstat (limited to 'manualPorts/alpine')
-rw-r--r-- | manualPorts/alpine/.footprint | 15 | ||||
-rw-r--r-- | manualPorts/alpine/.md5sum | 1 | ||||
-rw-r--r-- | manualPorts/alpine/.signature | 5 | ||||
-rw-r--r-- | manualPorts/alpine/Pkgfile | 20 | ||||
-rw-r--r-- | manualPorts/alpine/lastVersion.sh | 23 |
5 files changed, 64 insertions, 0 deletions
diff --git a/manualPorts/alpine/.footprint b/manualPorts/alpine/.footprint new file mode 100644 index 0000000..105714f --- /dev/null +++ b/manualPorts/alpine/.footprint @@ -0,0 +1,15 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/alpine +-rwxr-xr-x root/root usr/bin/pico +-rwxr-xr-x root/root usr/bin/pilot +-rwxr-xr-x root/root usr/bin/rpdump +-rwxr-xr-x root/root usr/bin/rpload +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/alpine.1.gz +-rw-r--r-- root/root usr/share/man/man1/pico.1.gz +-rw-r--r-- root/root usr/share/man/man1/pilot.1.gz +-rw-r--r-- root/root usr/share/man/man1/rpdump.1.gz +-rw-r--r-- root/root usr/share/man/man1/rpload.1.gz diff --git a/manualPorts/alpine/.md5sum b/manualPorts/alpine/.md5sum new file mode 100644 index 0000000..8b0d40e --- /dev/null +++ b/manualPorts/alpine/.md5sum @@ -0,0 +1 @@ +3c5ee0bc4505ba10b52a582b780bab75 349642a.tar.gz diff --git a/manualPorts/alpine/.signature b/manualPorts/alpine/.signature new file mode 100644 index 0000000..0999436 --- /dev/null +++ b/manualPorts/alpine/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/deepthought.pub +RWQxCptPusLGGolZRJ9JeMZq8NBrkSHP65yzUZXkr+0oteNoiGtlHdGz+DminXYj4XJ+g5JTnO0DjzHYr0T88b6SWsFolGTPfAU= +SHA256 (Pkgfile) = 1dedce8b3827eec4903ac08dd8c9d5daf14b850e17c1c0f6ef658fbba7d04d23 +SHA256 (.footprint) = dd67d2fc4470f569897d32b8ecd5d740c59592de8ead67668be423dd89456871 +SHA256 (349642a.tar.gz) = d782b448fa3f08ae2430000c89c622781d04e8993724a93693091e3ca6a37be6 diff --git a/manualPorts/alpine/Pkgfile b/manualPorts/alpine/Pkgfile new file mode 100644 index 0000000..b871216 --- /dev/null +++ b/manualPorts/alpine/Pkgfile @@ -0,0 +1,20 @@ +# Description: Apache licensed PINE mail user agent +# URL: http://alpine.freeiz.com +# Maintainer: Erich Eckner, crux at eckner dot net +# Depends on: libldap krb5 gettext + +name=alpine +version=2.21.999 +_commit=349642a +release=1 +source=("http://repo.or.cz/alpine.git/snapshot/${_commit}.tar.gz") + +build() { + + cd "alpine-${_commit}" + + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + +} diff --git a/manualPorts/alpine/lastVersion.sh b/manualPorts/alpine/lastVersion.sh new file mode 100644 index 0000000..055b7e1 --- /dev/null +++ b/manualPorts/alpine/lastVersion.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +git -C /usr/src/sonstiges/alpine pull >/dev/null 2>&1 + +if [ $# -eq 0 ]; then + + sed -n ' + /^VERSION\s*=/!d + s/^.*=\s*// + p + ' /usr/src/sonstiges/alpine/Makefile + +else + + line=$( + sed -n ' + /^VERSION\s*=/ = + ' /usr/src/sonstiges/alpine/Makefile + ) + git -C /usr/src/sonstiges/alpine blame -L${line},${line} -- Makefile | \ + awk '{print $1}' + +fi |