wok view gdb/receipt @ rev 23548

Up bcrelay (1.4.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 06 17:04:09 2020 +0000 (2020-04-06)
parents dead8955c3ca
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="gdb"
4 VERSION="7.7"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Project Debugger."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnu.org/software/gdb/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="ncurses expat glibc-dev"
15 BUILD_DEPENDS="ncurses-dev readline-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --with-python=no \
22 --disable-werror \
23 $CONFIGURE_ARGS && \
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }