wok-next view gc/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
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 }