mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
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:
parent
afccd7fd22
commit
9adcf14ddb
29
testing/musl-obstack/APKBUILD
Normal file
29
testing/musl-obstack/APKBUILD
Normal 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"
|
Loading…
Reference in New Issue
Block a user