wok-undigest view gdb-dev/receipt @ rev 1228

updated glib and glib-dev (2.43.3 -> 2.62.4)
author Hans-G?nter Theisgen
date Wed Sep 09 13:48:24 2020 +0100 (2020-09-09)
parents 415629c3d341
children
line source
1 # SliTaz package receipt."
3 PACKAGE="gdb-dev"
4 VERSION="7.6"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Project Debugger dev files."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 WANTED="gdb"
10 WEB_SITE="http://www.gnu.org/software/gdb/"
12 DEPENDS="gdb"
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr
18 # Copying include dir if exists
19 if [ -d "$install/usr/include" ]; then
20 cp -a $install/usr/include $fs/usr
21 fi
23 # Copying pkgconfig dir if exists
24 if [ -d "$install/usr/lib/pkgconfig" ]; then
25 test -d $fs/usr/lib/ || mkdir -p $fs/usr/lib/
26 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
27 fi
29 # Do not copy static libs, as they are all part of binutils
30 # binutils includes libbdf.*a, libiberty.a, and libopcodes.*a
31 # Copying static libs if exists
32 #if ( find $_pkg/usr/lib -name "*.*a" > /dev/null ); then
33 # test -d $fs/usr/lib || mkdir -p $fs/usr/lib
34 # cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
35 #fi
36 }