wok annotate cgdb/receipt @ rev 10112
Up: groff to 1.21.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 20 15:33:26 2011 +0000 (2011-05-20) |
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 |