mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
37 lines
907 B
Plaintext
37 lines
907 B
Plaintext
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
|
pkgname=libucontext
|
|
pkgver=0.1.1
|
|
pkgrel=0
|
|
pkgdesc="ucontext function implementations"
|
|
url="http://github.com/kaniini/libucontext"
|
|
arch="all"
|
|
license="ISC"
|
|
depends=""
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="https://distfiles.dereferenced.org/libucontext/libucontext-$pkgver.tar.xz"
|
|
builddir="$srcdir/libucontext-$pkgver"
|
|
|
|
case "$CTARGET_ARCH" in
|
|
armhf) LIBUCONTEXT_ARCH="arm" ;;
|
|
ppc64le) LIBUCONTEXT_ARCH="ppc64" ;;
|
|
*) LIBUCONTEXT_ARCH="$CTARGET_ARCH" ;;
|
|
esac
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make ARCH="$LIBUCONTEXT_ARCH"
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make ARCH="$LIBUCONTEXT_ARCH" check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make ARCH="$LIBUCONTEXT_ARCH" DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="a56dc9c4f9773f09b61079f96dba8cab74c89cbc9eec8373dd697793e18c7dc601bf47e47f3381a62400e25fe3d215d27ac1de11007f27af60e58c5804f67839 libucontext-0.1.1.tar.xz"
|