wok view crosstool-ng/receipt @ rev 9281

Add some perl modules for backuppc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 16 09:12:53 2011 +0100 (2011-03-16)
parents eee5d55b09fd
children 37ae88f35e4d
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"
12 BUILD_DEPENDS="flex cvs"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $_pkg/usr $fs
29 }