wok view crosstool-ng/receipt @ rev 15070

crosstool-ng: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 13:48:56 2013 +0000 (2013-08-13)
parents 4e822d0d55d5
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="crosstool-ng"
4 VERSION="1.12.4"
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="subversion flex cvs gawk texinfo ncurses-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/usr $fs
29 }