wok view crosstool-ng/receipt @ rev 8704

add: nareto, nareto-doc
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Feb 17 23:13:15 2011 +0100 (2011-02-17)
parents
children eee5d55b09fd
line source
1 # SliTaz package receipt.
3 PACKAGE="crosstool-ng"
4 VERSION="1.9.1"
5 CATEGORY="development"
6 SHORT_DESC="Tool to Build toolchains."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://ymorin.is-a-geek.org/projects/crosstool"
10 WGET_URL="http://ymorin.is-a-geek.org/download/$PACKAGE/$TARBALL"
11 DEPENDS="slitaz-toolchain"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $_pkg/usr $fs
28 }