wok view gc/receipt @ rev 5089

split wvdial; add wvstreams, wvstreams-dev
author Rohit Joshi <jozee@slitaz.org>
date Mon Mar 15 14:31:03 2010 +0000 (2010-03-15)
parents 97e887fa49fd
children 5be7252f0e4b
line source
1 # SliTaz package receipt.
3 PACKAGE="gc"
4 VERSION="7.0"
5 CATEGORY="development"
6 SHORT_DESC="A garbage collector for C and C++."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
10 WGET_URL="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/share $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 strip --strip-unneeded $fs/usr/lib/*
29 }