Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | SUMMARY = "A library for atomic integer operations" |
Andrew Geissler | 90fd73c | 2021-03-05 15:25:55 -0600 | [diff] [blame] | 2 | DESCRIPTION = "Package provides semi-portable access to hardware-provided atomic memory update operations on a number of architectures." |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 3 | HOMEPAGE = "https://github.com/ivmai/libatomic_ops/" |
| 4 | SECTION = "optional" |
| 5 | PROVIDES += "libatomics-ops" |
| 6 | LICENSE = "GPLv2 & MIT" |
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ |
| 8 | file://doc/LICENSING.txt;md5=e00dd5c8ac03a14c5ae5225a4525fa2d \ |
| 9 | " |
| 10 | |
| 11 | SRC_URI = "https://github.com/ivmai/libatomic_ops/releases/download/v${PV}/libatomic_ops-${PV}.tar.gz" |
| 12 | UPSTREAM_CHECK_URI = "https://github.com/ivmai/libatomic_ops/releases" |
| 13 | |
| 14 | SRC_URI[md5sum] = "90a78a84d9c28ce11f331c25289bfbd0" |
| 15 | SRC_URI[sha256sum] = "587edf60817f56daf1e1ab38a4b3c729b8e846ff67b4f62a6157183708f099af" |
| 16 | |
| 17 | S = "${WORKDIR}/libatomic_ops-${PV}" |
| 18 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 19 | ALLOW_EMPTY:${PN} = "1" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 20 | |
| 21 | inherit autotools pkgconfig |
| 22 | |
| 23 | BBCLASSEXTEND = "native nativesdk" |