wok-next view gc/receipt @ rev 20555
Fix "DSO missing..." error: loqui, xfprint, notification-daemon-gtk2, xfmedia, evince, celestia(?)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Apr 06 17:43:57 2018 +0300 (2018-04-06) |
parents | dfe9cf393f57 |
children | a5d7827e08cf |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gc"
4 VERSION="7.2"
5 CATEGORY="development"
6 SHORT_DESC="A garbage collector for C and C++"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT GPL"
9 WEB_SITE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$TARBALL"
14 SPLIT="gc-dev"
16 compile_rules() {
17 ./configure \
18 --enable-cplusplus \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install || return 1
23 # libatomic_ops
24 cd $src/libatomic_ops*
25 ./configure \
26 --prefix=/usr \
27 --disable-static \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 genpkg_rules() {
34 case $PACKAGE in
35 gc) copy @std;;
36 *-dev) copy @dev;;
37 esac
38 }