wok annotate cgdb/receipt @ rev 10289

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