mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
- This recipe is useful for more than just pulseaudio, so move it to recipes-support. - Rename to the correct upstream name, which corresponds to the library name. Keep a PROVIDES of libatomics-ops for compatibility. (From OE-Core rev: 5014de67fa6da1672626e3ec92fc51430fca3262) (From OE-Core rev: 5a14d4f981c2c12c274fade518d23706dca5889b) Signed-off-by: Christopher Larson <kergoth@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
888 B
BlitzBasic
30 lines
888 B
BlitzBasic
SUMMARY = "A library for atomic integer operations"
|
|
HOMEPAGE = "https://github.com/ivmai/libatomic_ops/"
|
|
SECTION = "optional"
|
|
PROVIDES += "libatomics-ops"
|
|
LICENSE = "GPLv2 & MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://doc/LICENSING.txt;md5=e00dd5c8ac03a14c5ae5225a4525fa2d \
|
|
"
|
|
|
|
SRC_URI = "http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "1d6538604b314d2fccdf86915e5c0857"
|
|
SRC_URI[sha256sum] = "04fa615f62992547bcbda562260e28b504bc4c06e2f985f267f3ade30304b5dd"
|
|
|
|
S = "${WORKDIR}/libatomic_ops-${PV}"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
ARM_INSTRUCTION_SET = "arm"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_install_append() {
|
|
# those contain only docs, not necessary for now.
|
|
install -m 0755 -d ${D}${docdir}
|
|
mv ${D}${datadir}/libatomic_ops ${D}${docdir}/${BPN}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|