wok-next view cgdb/receipt @ rev 21056

zim: fix build
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 03 11:57:12 2018 +0200 (2018-12-03)
parents 65f5c0b7dcd4
children 352233ef855e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="cgdb"
4 VERSION="0.7.0"
5 CATEGORY="development"
6 SHORT_DESC="Curses interface for GDB"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://cgdb.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://cgdb.me/files/$TARBALL"
14 BUILD_DEPENDS="texinfo ncurses-dev readline-dev"
16 compile_rules() {
17 ./configure $CONFIGURE_ARGS &&
18 make &&
19 make install || return 1
21 cook_pick_docs README NEWS
22 }
24 genpkg_rules() {
25 copy @std
26 DEPENDS="ncurses readline gdb"
27 TAGS="debugger"
28 }