testing/musl-obstack: new aport

A standalone library to implement GNU libc's obstack
https://github.com/pullmoll/musl-obstack
This commit is contained in:
Natanael Copa 2017-09-04 14:06:26 +00:00
parent afccd7fd22
commit 9adcf14ddb

View File

@ -0,0 +1,29 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=musl-obstack
pkgver=1.1
pkgrel=0
pkgdesc="A standalone library to implement GNU libc's obstack"
url="https://github.com/pullmoll/musl-obstack"
arch="all"
license="GPL-2.0"
depends=""
depends_dev=""
makedepends="$depends_dev automake autoconf libtool"
install=""
subpackages="$pkgname-dev"
source="musl-obstack-$pkgver.tar.gz::https://github.com/pullmoll/musl-obstack/archive/v$pkgver.tar.gz"
builddir="$srcdir/musl-obstack-$pkgver"
build() {
cd "$builddir"
./bootstrap.sh
./configure --prefix=/usr
make
}
package() {
cd "$builddir"
make install DESTDIR="$pkgdir"
}
sha512sums="e3a9956133d72a00663cf8d9720e62002142e113e7d67e2338a2bce1bdfac9eefd4290db8add15eabafdf01065f7fe9bb6754faa36b88df819c53d44fa140757 musl-obstack-1.1.tar.gz"