wok annotate libboost-math-dev/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 bcfa054d147e
children 99ced85ef4cb
rev   line source
rcx@3702 1 # SliTaz package receipt.
rcx@3702 2
rcx@3702 3 PACKAGE="libboost-math-dev"
rcx@3702 4 LIB_NAME="math"
slaxemulator@7471 5 VERSION="1.45.0"
rcx@3702 6
rcx@3702 7 CATEGORY="development"
rcx@3702 8 SHORT_DESC="Part of the Boost C++ Libraries collection."
rcx@3702 9 MAINTAINER="chadi.elahmad@gmail.com"
rcx@3702 10 WEB_SITE="http://www.boost.org/"
rcx@3702 11
rcx@3702 12 DEPENDS="libboost-math libboost-dev"
rcx@3702 13 WANTED="libboost-dev"
rcx@3702 14 SOURCE="boost"
rcx@3702 15
rcx@3702 16 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3702 17 genpkg_rules()
rcx@3702 18 {
rcx@3702 19 mkdir -p $fs/usr/lib $fs/usr/include/$SOURCE
rcx@3702 20
rcx@3702 21 _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg
rcx@3702 22 cp -a $_pkg/usr/include/$SOURCE/*$LIB_NAME* $fs/usr/include/boost
rcx@3702 23 cp -a $_pkg/usr/lib/*$LIB_NAME*.*a $fs/usr/lib
rcx@3702 24 }