wok view gdb-dev/receipt @ rev 2121

mkpkgiso: may install lighttpd in install.sh
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 31 14:58:52 2009 +0000 (2009-01-31)
parents
children b4f95537c976
line source
1 # SliTaz package receipt."
3 PACKAGE="gdb-dev"
4 VERSION="6.8"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Project Debugger. dev files."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gdb"
9 WANTED="gdb"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/gdb/"
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr
17 # Copying include dir if existes
18 if [ -d "$_pkg/usr/include" ]; then
19 cp -a $_pkg/usr/include $fs/usr
20 fi
22 # Copying pkgconfig dir if existes
23 if [ -d "$_pkg/usr/lib/pkgconfig" ]; then
24 test -d $fs/usr/lib/ || mkdir -p $fs/usr/lib/
25 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
26 fi
28 # Copying static libs if existes
29 if ( find $_pkg/usr/lib -name "*.*a" > /dev/null ); then
30 test -d $fs/usr/lib || mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
32 fi
33 }