~alpine/aports

testing/s6-portable-utils: new aport v1 PROPOSED

John Regan: 1
 testing/s6-portable-utils: new aport

 1 files changed, 50 insertions(+), 0 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.alpinelinux.org/~alpine/aports/patches/995/mbox | git am -3
Learn more about email & git

[alpine-aports] [PATCH] testing/s6-portable-utils: new aport Export this patch

---
 testing/s6-portable-utils/APKBUILD | 50 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 testing/s6-portable-utils/APKBUILD

diff --git a/testing/s6-portable-utils/APKBUILD b/testing/s6-portable-utils/APKBUILD
new file mode 100644
index 0000000..8a61ae2
--- /dev/null
+++ b/testing/s6-portable-utils/APKBUILD
@@ -0,0 +1,50 @@
# Contributor: John Regan <john@jrjrtech.com>
# Maintainer: John Regan <john@jrjrtech.com>
pkgname=s6-portable-utils
pkgver=2.0.0.1
pkgrel=0
pkgdesc="skarnet.org's tiny portable generic utilities"
url="http://skarnet.org/software/$pkgname/"
arch="all"
license="ISC"
depends="skalibs"
depends_dev="skalibs-dev"
makedepends="$depends_dev"
install=""
subpackages="$pkgname-dev"
source="http://skarnet.org/software/$pkgname/$pkgname-$pkgver.tar.gz"

_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--enable-shared \
		--enable-static \
		--disable-allstatic \
		--prefix=/usr \
		--libdir=/usr/lib \
		|| return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/lib/*.la
}

md5sums="6627d44332744d892c46b300c24fcf08  s6-portable-utils-2.0.0.1.tar.gz"
sha256sums="f2e404c6cd0d4658445e6344276b6796e6be11d5bf5a069110034b21f7802282  s6-portable-utils-2.0.0.1.tar.gz"
sha512sums="8b6df0896d9ff018c8dbe69534b76c4b1dfc1a26252d252dd08a4df27c3b92781fd5e0499108da18023ce5023ff1c853da0c396e59f8ddf9adfc91ddd188c360  s6-portable-utils-2.0.0.1.tar.gz"
-- 
2.2.1



---
Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
Help:         alpine-aports+help@lists.alpinelinux.org
---