recipes: compressors/xz: Upgraded to version 5.6.2
[dragora.git] / recipes / libs / libatomic_ops / recipe
blob9faf806d9b8e1bfd764c97bab675939538054d13
1 # Build recipe for libatomic_ops.
3 # Copyright (c) 2018-2019, 2021 Matias Fonzo, <selk@dragora.org>.
4 # Copyright (c) 2022 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=libatomic_ops
22 version=7.6.14
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=libs
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=https://github.com/ivmai/libatomic_ops/releases/download/v${version}/$tarname
33 description="
34 Implementations for atomic memory.
36 libatomic_ops provides implementations for atomic memory update
37 operations on a number of architectures.  This allows direct use of
38 these in reasonably portable code.  Unlike earlier similar packages,
39 this one explicitly considers memory barrier semantics, and allows
40 the construction of code that involves minimum overhead across a
41 variety of architectures.
44 homepage=https://github.com/ivmai/libatomic_ops
45 license=GPLv2+
47 # Source documentation
48 docs="AUTHORS ChangeLog";       # To complement installed documentation.
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CPPFLAGS="$QICPPFLAGS" \
61     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --docdir=$docsdir \
65      --enable-static=no \
66      --enable-shared=yes \
67      --build="$(gcc -dumpmachine)"
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Copy documentation
73     mkdir -p "${destdir}/$docsdir"
74     cp -p $docs "${destdir}/$docsdir"