wok view cgdb/receipt @ rev 10341

screen: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 02:29:02 2011 +0000 (2011-05-22)
parents 96976b961ce8
children 94aa6ab5462c
line source
1 # SliTaz package receipt.
3 PACKAGE="cgdb"
4 VERSION="0.6.5"
5 CATEGORY="development"
6 SHORT_DESC="Curses interface for GDB"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://cgdb.sourceforge.net/"
10 WGET_URL="http://prdownloads.sourceforge.net/cgdb/$TARBALL"
11 TAGS="debugger"
13 DEPENDS="gdb ncurses readline"
14 BUILD_DEPENDS="ncurses-dev readline-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }