mirror of
https://github.com/outbackdingo/ports.git
synced 2026-04-05 10:09:22 +00:00
18 lines
411 B
Plaintext
18 lines
411 B
Plaintext
# description : Implementations for atomic memory update operations on a number of architectures
|
|
|
|
name=libatomic_ops
|
|
version=7.8.2
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/ivmai/libatomic_ops/archive/v$version.tar.gz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./autogen.sh
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|