wok view gdb-dev/receipt @ rev 12639

connman: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 29 21:53:45 2012 +0200 (2012-04-29)
parents f3cc54360e1f
children a2066d3c1f8b
line source
1 # SliTaz package receipt."
3 PACKAGE="gdb-dev"
4 VERSION="7.3.1"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Project Debugger dev files."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gdb"
9 WANTED="gdb"
10 WEB_SITE="http://www.gnu.org/software/gdb/"
12 genpkg_rules()
13 {
14 mkdir -p $fs/usr
16 # Copying include dir if exists
17 if [ -d "$_pkg/usr/include" ]; then
18 cp -a $_pkg/usr/include $fs/usr
19 fi
21 # Copying pkgconfig dir if exists
22 if [ -d "$_pkg/usr/lib/pkgconfig" ]; then
23 test -d $fs/usr/lib/ || mkdir -p $fs/usr/lib/
24 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
25 fi
27 # Do not copy static libs, as they are all part of binutils
28 # binutils includes libbdf.*a, libiberty.a, and libopcodes.*a
29 # Copying static libs if exists
30 #if ( find $_pkg/usr/lib -name "*.*a" > /dev/null ); then
31 # test -d $fs/usr/lib || mkdir -p $fs/usr/lib
32 # cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
33 #fi
34 }