mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
44 lines
1020 B
Plaintext
44 lines
1020 B
Plaintext
# Maintainer: TBK <alpine@jjtc.eu>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
|
|
pkgname=libatomic_ops
|
|
pkgver=7.6.4
|
|
pkgrel=0
|
|
pkgdesc="Semi-portable access to hardware provided atomic memory operations"
|
|
arch="all"
|
|
url="https://github.com/ivmai/libatomic_ops"
|
|
license="GPL-2.0-or-later MIT"
|
|
makedepends=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/"$pkgname-$pkgver
|
|
|
|
case "$CARCH" in
|
|
s390x) options="!check" ;; # FIXME
|
|
esac
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--enable-shared \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="2e6ef0bfd4b77e9260383feb2865c96388fb1ebed9d37605eeb83ac87e3b6a565495d588808129ac7b3ee5f6a58a37440da7784b680cc6590842b09c2625983b libatomic_ops-7.6.4.tar.gz"
|