vp-build/srcpkgs/unicorn/template

73 lines
1.8 KiB
Bash

# Template file for 'unicorn'
pkgname=unicorn
version=1.0
revision=2
only_for_archs="x86_64 x86_64-musl i686 i686-musl"
hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework"
maintainer="Michael Gehring <mg@ebfe.org>"
license="GPL-2"
homepage="http://www.unicorn-engine.org/"
distfiles="https://github.com/unicorn-engine/unicorn/archive/${version}.tar.gz"
checksum=27efa24e465f3eca9a1fa8f7f456f6fecd91beeba0b4be21b34308040047def9
post_extract() {
# don't build the samples
echo "clean:" > samples/Makefile
}
do_build() {
make
make -C bindings
cd bindings/python
for pyver in $py2_ver $py3_ver; do
python${pyver} setup.py build --build-base=build-${pyver}
done
}
do_install() {
make DESTDIR=${DESTDIR} install
cd bindings/python
for pyver in $py2_ver $py3_ver; do
python${pyver} setup.py build --build-base=build-${pyver} \
install --prefix=/usr --root=${DESTDIR}
done
}
unicorn-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
}
}
unicorn-python_package() {
replaces="python-unicorn>=0"
depends="${sourcepkg}-devel>=${version}_${revision} python-setuptools"
short_desc+=" - Python2 bindings"
pycompile_module="unicorn"
pkg_install() {
vmove ${py2_sitelib}
}
}
unicorn-python3_package() {
replaces="python3.4-unicorn>=0"
depends="${sourcepkg}-devel>=${version}_${revision} python3-setuptools"
short_desc+=" - Python3 bindings"
pycompile_module="unicorn"
pkg_install() {
vmove ${py3_sitelib}
}
}
python3.4-unicorn_package() {
build_style=meta
short_desc+=" - Python3.4 bindings (transitional dummy package)"
depends="unicorn-python3>=${version}_${revision}"
}