radare2: update to 0.9.6.
This commit is contained in:
parent
197a020a5e
commit
8b26667d84
|
@ -1,24 +0,0 @@
|
|||
diff -ru configure configure
|
||||
--- configure 2013-03-27 12:41:35.959376909 +0100
|
||||
+++ configure 2013-03-27 12:41:55.542960992 +0100
|
||||
@@ -36,7 +36,7 @@
|
||||
ENVWORDS="${ENVWORDS} $1_CPU $1_OS"
|
||||
STR=`eval "echo ${S}$1"`
|
||||
SPLIT_CPU="`echo "$STR" | cut -d - -f 1`"
|
||||
-SPLIT_OS="`echo "$STR" | awk -F - '{if(NF==4){print $4}else{print $3}}'`"
|
||||
+SPLIT_OS="`echo "$STR" | awk -F - '{if(NF==4){print $4}else{print $2}}'`"
|
||||
eval "$1_CPU=\"$SPLIT_CPU\""
|
||||
eval "$1_OS=\"$SPLIT_OS\""
|
||||
shift
|
||||
diff -ru libr/syscall/d/Makefile libr/syscall/d/Makefile
|
||||
--- libr/syscall/d/Makefile 2013-03-27 12:41:35.948377143 +0100
|
||||
+++ libr/syscall/d/Makefile 2013-03-27 12:42:15.245542518 +0100
|
||||
@@ -39,7 +39,7 @@
|
||||
${SDB}:
|
||||
cp -rf $(LTOP)/db/sdb/src $(LTOP)/db/sdb/src-native
|
||||
#cd $(LTOP)/db/sdb/src-native && ${MAKE} -j ${MAKE_JOBS} ARCH=xxx CC=gcc clean sdb
|
||||
- cd $(LTOP)/db/sdb/src-native && ${MAKE} -j 1 ARCH=xxx CC=gcc clean sdb
|
||||
+ cd $(LTOP)/db/sdb/src-native && CFLAGS='' ${MAKE} -j 1 ARCH=xxx CC=gcc clean sdb
|
||||
cp -f $(LTOP)/db/sdb/src-native/sdb $(LTOP)/db/sdb/sdb
|
||||
rm -rf $(LTOP)/db/sdb/src-native
|
||||
|
|
@ -1,26 +1,28 @@
|
|||
# Template file for 'radare2'
|
||||
pkgname=radare2
|
||||
version=0.9.4
|
||||
revision=2
|
||||
version=0.9.6
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
short_desc="Advanced command line debugger and hexadecimal editor"
|
||||
maintainer="pancake <pancake@nopcode.org>"
|
||||
license="LGPL-3"
|
||||
homepage="http://www.radare.org"
|
||||
distfiles="${homepage}/get/${pkgname}-${version}.tar.gz"
|
||||
checksum=7af3413f736b979dbf5db3688e9bc3052879a28428ac4f10086fa7f93cba5de0
|
||||
distfiles="${homepage}/get/${pkgname}-${version}.tar.xz"
|
||||
checksum=91e8820ab7003de422cde777af681b0023d6b20253a81759df94578c514ae883
|
||||
|
||||
radare2-devel_package() {
|
||||
depends="radare2>=${version}"
|
||||
short_desc="${short_desc} - development files"
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove "usr/lib/*.a"
|
||||
vmove "usr/lib/*.so"
|
||||
}
|
||||
}
|
||||
|
||||
radare2_package() {
|
||||
pkg_install() {
|
||||
vmove usr
|
||||
vmove all
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue