45 lines
1.2 KiB
Text
45 lines
1.2 KiB
Text
# Template file for 'r2-bindings'
|
|
pkgname=r2-bindings
|
|
version=0.9.4
|
|
revision=1
|
|
wrksrc="radare2-${version}"
|
|
short_desc="Advanced command line debugger and hexadecimal editor (bindings)"
|
|
maintainer="pancake <pancake@nopcode.org>"
|
|
license="LGPL-3"
|
|
homepage="http://www.radare.org"
|
|
distfiles="${homepage}/get/radare2-${version}.tar.gz"
|
|
checksum=7af3413f736b979dbf5db3688e9bc3052879a28428ac4f10086fa7f93cba5de0
|
|
long_desc="
|
|
It is composed by an hexadecimal editor (radare) with a wrapped IO layer
|
|
supporting multiple backends for local/remote files, accessing filesystems,
|
|
debugger (osx,bsd,linux,w32), stream analyzer, assembler/disassembler
|
|
(rasm) for x86,arm,ppc,m68k,java,msil,sparc, etc.
|
|
|
|
This package contains the radare2 bindings for multiple languages."
|
|
|
|
makedepends="pkg-config swig>=2.0.7 valabind>=0.7.2
|
|
python-devel radare2-devel>=${version}"
|
|
|
|
do_configure() {
|
|
cd r2-bindings
|
|
./configure --prefix=/usr --enable=python --enable-devel
|
|
}
|
|
|
|
do_build() {
|
|
cd r2-bindings
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
cd r2-bindings
|
|
make DESTDIR=${DESTDIR} install
|
|
}
|
|
|
|
r2-bindings_package() {
|
|
pycompile_module="r2"
|
|
depends="radare2-devel-${version}*"
|
|
noverifyrdeps=1
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|