wok-next view crosstool-ng/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="crosstool-ng"
4 VERSION="1.24.0"
5 CATEGORY="development"
6 SHORT_DESC="Tool to Build toolchains"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://ymorin.is-a-geek.org/projects/crosstool"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$TARBALL"
14 BUILD_DEPENDS="automake cvs flex gawk gperf help2man libtool ncurses-dev
15 texinfo"
17 compile_rules()
18 {
19 ./bootstrap &&
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$install install
25 }
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 DEPENDS="slitaz-toolchain"
31 }