wok-next annotate gc/receipt @ rev 21470

updated totem-pl-parser (3.26.0 -> 3.26.5)
author Hans-G?nter Theisgen
date Wed May 13 08:02:17 2020 +0100 (2020-05-13)
parents a3c581bf52b8
children
rev   line source
al@20464 1 # SliTaz package receipt v2.
pankso@146 2
pankso@146 3 PACKAGE="gc"
slaxemulator@13078 4 VERSION="7.2"
pankso@200 5 CATEGORY="development"
al@20464 6 SHORT_DESC="A garbage collector for C and C++"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15600 8 LICENSE="MIT GPL"
al@20906 9 WEB_SITE="http://www.hboehm.info/gc/"
al@20882 10 REPOLOGY="boehm-gc"
al@20464 11
pankso@146 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20906 13 WGET_URL="http://www.hboehm.info/gc/gc_source/$TARBALL"
pankso@146 14
al@21020 15 SPLIT="$PACKAGE-dev"
al@20464 16
al@20464 17 compile_rules() {
pankso@5288 18 ./configure \
slaxemulator@11005 19 --enable-cplusplus \
pankso@5288 20 $CONFIGURE_ARGS &&
al@20570 21 fix libtool &&
pankso@5288 22 make &&
al@21020 23 make DESTDIR=$install install || return 1
al@20548 24
pankso@5288 25 # libatomic_ops
al@20548 26 cd $src/libatomic_ops*
pankso@5288 27 ./configure \
pankso@5288 28 --prefix=/usr \
pankso@5288 29 --disable-static \
pankso@5288 30 $CONFIGURE_ARGS &&
pankso@5288 31 make &&
al@21020 32 make DESTDIR=$install install
pankso@146 33 }
pankso@146 34
al@20464 35 genpkg_rules() {
al@20464 36 case $PACKAGE in
al@20548 37 gc) copy @std;;
al@20548 38 *-dev) copy @dev;;
al@20464 39 esac
pankso@146 40 }