wok-next annotate gc/receipt @ rev 18465
libQtDBus: add /usr/bin/qdbus
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Fri Oct 02 13:31:38 2015 +0200 (2015-10-02) |
parents | e4cda1000ec7 |
children | c4e53a39395a |
rev | line source |
---|---|
pankso@146 | 1 # SliTaz package receipt. |
pankso@146 | 2 |
pankso@146 | 3 PACKAGE="gc" |
slaxemulator@13078 | 4 VERSION="7.2" |
pankso@200 | 5 CATEGORY="development" |
pankso@146 | 6 SHORT_DESC="A garbage collector for C and C++." |
pankso@146 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15600 | 8 LICENSE="MIT GPL" |
pankso@146 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@146 | 10 WEB_SITE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" |
pankso@146 | 11 WGET_URL="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$TARBALL" |
pascal@16049 | 12 HOST_ARCH="i486 arm" |
pankso@146 | 13 |
pankso@146 | 14 # Rules to configure and make the package. |
pankso@146 | 15 compile_rules() |
pankso@146 | 16 { |
pankso@146 | 17 cd $src |
pankso@5288 | 18 ./configure \ |
slaxemulator@11005 | 19 --enable-cplusplus \ |
pankso@5288 | 20 $CONFIGURE_ARGS && |
pankso@5288 | 21 make && |
slaxemulator@11005 | 22 make DESTDIR=$DESTDIR install && |
pankso@5288 | 23 # libatomic_ops |
pankso@5288 | 24 cd $src/libatomic_ops-* && |
pankso@5288 | 25 ./configure \ |
pankso@5288 | 26 --prefix=/usr \ |
pankso@5288 | 27 --disable-static \ |
pankso@5288 | 28 $CONFIGURE_ARGS && |
pankso@5288 | 29 make && |
slaxemulator@11005 | 30 make DESTDIR=$DESTDIR install |
pankso@146 | 31 } |
pankso@146 | 32 |
pankso@146 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@146 | 34 genpkg_rules() |
pankso@146 | 35 { |
pankso@5288 | 36 mkdir -p $fs/usr/lib $fs/usr/share |
slaxemulator@13078 | 37 cp -a $install/usr/share/gc $fs/usr/share |
slaxemulator@13078 | 38 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@146 | 39 } |
pankso@146 | 40 |