wok-next view gc/receipt @ rev 21267

updated freeradius (2.1.12 -> 3.0.20)
author Hans-G?nter Theisgen
date Fri Dec 06 17:16:20 2019 +0100 (2019-12-06)
parents a3c581bf52b8
children
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="devel@slitaz.org"
8 LICENSE="MIT GPL"
9 WEB_SITE="http://www.hboehm.info/gc/"
10 REPOLOGY="boehm-gc"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.hboehm.info/gc/gc_source/$TARBALL"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --enable-cplusplus \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make DESTDIR=$install install || return 1
25 # libatomic_ops
26 cd $src/libatomic_ops*
27 ./configure \
28 --prefix=/usr \
29 --disable-static \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$install install
33 }
35 genpkg_rules() {
36 case $PACKAGE in
37 gc) copy @std;;
38 *-dev) copy @dev;;
39 esac
40 }