wok view crosstool-ng/receipt @ rev 22144

updated x264 and x264-dev (20160517-2245 -> 20191105-2245)
author Hans-G?nter Theisgen
date Wed Nov 06 15:16:51 2019 +0100 (2019-11-06)
parents 22604cb26233
children 986409b5de0e
line source
1 # SliTaz package receipt.
3 PACKAGE="crosstool-ng"
4 VERSION="1.20.0"
5 CATEGORY="development"
6 SHORT_DESC="Tool to Build toolchains."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://crosstool-ng.github.io/"
11 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$TARBALL"
13 DEPENDS="slitaz-toolchain"
14 BUILD_DEPENDS="subversion flex cvs gawk texinfo ncurses-dev automake libtool \
15 gperf wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./bootstrap
21 sed -i 's/-lncurses/& -ltinfo/' kconfig/Makefile
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/usr $fs
33 }