aports/testing/unicorn/APKBUILD
Bart Ribbers 44ce39a091 */*: remove unnecessary --output-on-failure
We set OUTPUT_ON_FAILURE by default nowadays so this argument is
unnecessary
2025-03-19 15:41:30 +00:00

65 lines
1.8 KiB
Text

# Contributor: Patrycja Rosa <alpine@ptrcnull.me>
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
pkgname=unicorn
pkgver=2.0.1
pkgrel=4
pkgdesc="Unicorn CPU emulator engine"
url="https://www.unicorn-engine.org/"
# ppc: fails check
# rest: ftbfs
arch="all !armv7 !armhf !ppc64le !s390x !loongarch64"
license="GPL-2.0-or-later"
makedepends="cmake linux-headers python3 py3-setuptools py3-gpep517 py3-wheel samurai"
subpackages="$pkgname-dev py3-$pkgname-pyc:pyc py3-unicorn:py3"
source="https://github.com/unicorn-engine/unicorn/archive/refs/tags/$pkgver/unicorn-$pkgver.tar.gz
endian.patch
python-libdir.patch
"
# secfixes:
# 2.0.1-r0:
# - CVE-2022-29693
# - CVE-2022-29694
# - CVE-2022-29695
build() {
cmake -B build -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
cmake --build build
cd bindings/python
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
cd build
ctest
}
package() {
DESTDIR="$pkgdir" cmake --install build
cd bindings/python
gpep517 install-wheel --destdir "$pkgdir" \
.dist/*.whl
# dupe of parent package
rm -r "$pkgdir"/usr/lib/python3*/site-packages/unicorn/lib/
}
py3() {
pkgdesc="$pkgdesc (Python bindings)"
depends="python3 $pkgname=$pkgver-r$pkgrel py3-setuptools"
amove usr/lib/python3*
}
sha512sums="
4249d33d38614ea1ca51e38c7838cb276306100aa44c65ad1b3e39304e4b856ac643a9c6f9d13678fc07bea58989a08b64653d17afe9e62bcef2936ba63e1b1f unicorn-2.0.1.tar.gz
c1373171c1d9ee106f9dab94e7d283b3b8c1eb19013ffc96d1b6156c1571057f9984f08db4f07ea98d6bd7855a6aa39386ca33cade4bb9e367cb8b2705c865c1 endian.patch
994150b8625ff7198ef344f85b88f62a3cb9fe429a8985d03ec049fd99f223ccc8b59a1a909d025a0ef387fab4b2c22b96b5ee4de93efdda57a7747fae080704 python-libdir.patch
"