Ariadne Conill 75a42157ee update distfiles.dereferenced.org URIs to distfiles.ariadne.space
Because of incompetence at Dynadot, the dereferenced.org domain is now
compromised and should be considered untrusted until further notice.
2023-07-02 18:54:42 +00:00

39 lines
991 B
Plaintext

# Maintainer: Ariadne Conill <ariadne@dereferenced.org>
pkgname=libucontext
pkgver=1.2
pkgrel=2
pkgdesc="ucontext function implementations"
url="https://github.com/kaniini/libucontext"
arch="all"
license="ISC"
subpackages="$pkgname-dev $pkgname-doc"
makedepends="scdoc"
source="https://distfiles.ariadne.space/libucontext/libucontext-$pkgver.tar.xz"
case "$CTARGET_ARCH" in
arm*) LIBUCONTEXT_ARCH="arm" ;;
ppc64le) LIBUCONTEXT_ARCH="ppc64" ;;
*) LIBUCONTEXT_ARCH="$CTARGET_ARCH" ;;
esac
build() {
# workaround segfault on x86 with -Os
# https://github.com/kaniini/libucontext/issues/52
CFLAGS="$CFLAGS -O2"
make ARCH="$LIBUCONTEXT_ARCH"
make ARCH="$LIBUCONTEXT_ARCH" docs
}
check() {
make ARCH="$LIBUCONTEXT_ARCH" check
}
package() {
make ARCH="$LIBUCONTEXT_ARCH" DESTDIR="$pkgdir" install install_docs
}
sha512sums="
6603f2dcd87c4d9919c1726f2964632483e1a647733ff543d5935e3e2dac548adf320f1f9fb4c494691fe99fb393d64b15369f04d3783b2ca4c40b68c3d87865 libucontext-1.2.tar.xz
"