mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
A standalone library to implement GNU libc's obstack https://github.com/pullmoll/musl-obstack
30 lines
801 B
Plaintext
30 lines
801 B
Plaintext
# 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"
|