wok-next rev 4819
Add gdb-python.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Wed Jan 20 00:58:00 2010 +0100 (2010-01-20) |
parents | 35f5a5893111 |
children | e86b9962572a |
files | gdb-python/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gdb-python/receipt Wed Jan 20 00:58:00 2010 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gdb-python" 1.7 +VERSION="7.0.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="The GNU Project Debugger with Python support." 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +DEPENDS="ncurses expat glibc-dev python" 1.12 +BUILD_DEPENDS="ncurses-dev python-dev" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://www.gnu.org/software/gdb/" 1.15 +WGET_URL="http://ftp.gnu.org/gnu/gdb/$TARBALL" 1.16 +PROVIDE="gdb" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr \ 1.23 + --disable-werror $CONFIGURE_ARGS && \ 1.24 + make && make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr 1.31 + cp -a $_pkg/usr/bin $fs/usr 1.32 +} 1.33 +