wok annotate gsl/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents e96b5bb3b663
children 0052130130dd
rev   line source
pankso@3603 1 # SliTaz package receipt.
pankso@3603 2
pankso@3603 3 PACKAGE="gsl"
pankso@3603 4 VERSION="1.12"
pankso@3603 5 CATEGORY="development"
pankso@3603 6 SHORT_DESC="Numerical library for C and C++ programmers."
pankso@3603 7 MAINTAINER="pankso@slitaz.org"
pankso@3603 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@3603 9 WEB_SITE="http://www.gnu.org/software/gsl/"
pankso@3603 10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@3603 11
pankso@3603 12 # Rules to configure and make the package.
pankso@3603 13 compile_rules()
pankso@3603 14 {
pankso@3603 15 cd $src
pankso@3603 16 ./configure \
pankso@3603 17 --prefix=/usr \
pankso@3603 18 --infodir=/usr/share/info \
pankso@3603 19 --mandir=/usr/share/man \
pankso@3603 20 $CONFIGURE_ARGS &&
pascal@5778 21 make -j 4 && make DESTDIR=$PWD/_pkg install
pankso@3603 22 }
pankso@3603 23
pankso@3603 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3603 25 genpkg_rules()
pankso@3603 26 {
pankso@3603 27 mkdir -p $fs/usr/lib
pankso@3603 28 cp -a $_pkg/usr/bin $fs/usr
pankso@3603 29 rm $fs/usr/bin/*-config
pankso@3603 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@3603 31 }