53 lines
1.4 KiB
Bash
53 lines
1.4 KiB
Bash
# Template file for 'capstone'
|
|
pkgname=capstone
|
|
version=3.0.5
|
|
revision=1
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
short_desc="Lightweight multi-platform, multi-architecture disassembly framework"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="BSD-2-Clause"
|
|
homepage="http://www.capstone-engine.org/"
|
|
distfiles="https://github.com/aquynh/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=913dd695e7c5a2b972a6f427cb31f2e93677ec1c38f39dda37d18a91c70b6df1
|
|
|
|
do_build() {
|
|
make V=1 CC=$CC ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make PREFIX=/usr DESTDIR=${DESTDIR} install
|
|
make -C bindings/python PREFIX=/usr DESTDIR=${DESTDIR} install
|
|
make -C bindings/python PREFIX=/usr DESTDIR=${DESTDIR} install3
|
|
vlicense LICENSE.TXT LICENSE
|
|
}
|
|
|
|
capstone-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|
|
|
|
capstone-python_package() {
|
|
short_desc+=" - Python2 bindings"
|
|
pycompile_module="capstone"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/python2*
|
|
vlicense bindings/python/LICENSE.TXT
|
|
}
|
|
}
|
|
|
|
capstone-python3_package() {
|
|
short_desc+=" - Python3 bindings"
|
|
pycompile_module="capstone"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense bindings/python/LICENSE.TXT
|
|
}
|
|
}
|