wok view gdb-python/receipt @ 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
children e86b9962572a
line source
1 # SliTaz package receipt.
3 PACKAGE="gdb-python"
4 VERSION="7.0.1"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Project Debugger with Python support."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="ncurses expat glibc-dev python"
9 BUILD_DEPENDS="ncurses-dev python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/gdb/"
12 WGET_URL="http://ftp.gnu.org/gnu/gdb/$TARBALL"
13 PROVIDE="gdb"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --disable-werror $CONFIGURE_ARGS && \
21 make && make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }