wok annotate cgdb/receipt @ rev 9915

cgdb: fix bdeps and clean-up receipt
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 17 20:14:45 2011 +0200 (2011-05-17)
parents b5778df5cf39
children f12f31c20a9f
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 {
pankso@9915 19 ./configure && make && make install
erjo@4817 20 }
erjo@4817 21
erjo@4817 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4817 23 genpkg_rules()
erjo@4817 24 {
erjo@4817 25 mkdir -p $fs/usr
erjo@4817 26 cp -a $_pkg/usr/bin $fs/usr
erjo@4817 27 }
erjo@4817 28