wok annotate crosstool-ng/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 986409b5de0e
children 5ea0ce1cecc0
rev   line source
pascal@7793 1 # SliTaz package receipt.
pascal@7793 2
pascal@7793 3 PACKAGE="crosstool-ng"
pascal@22390 4 VERSION="1.24.0"
pascal@7793 5 CATEGORY="development"
pascal@7793 6 SHORT_DESC="Tool to Build toolchains."
pascal@7793 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="GPL2"
pascal@17683 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21885 10 WEB_SITE="https://crosstool-ng.github.io/"
pascal@17683 11 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$TARBALL"
pascal@15579 12
pascal@22390 13 DEPENDS="slitaz-toolchain ncursesw"
pascal@17683 14 BUILD_DEPENDS="subversion flex cvs gawk texinfo ncurses-dev automake libtool \
pascal@22391 15 gperf wget xz help2man file"
pascal@7793 16
pascal@7793 17 # Rules to configure and make the package.
pascal@7793 18 compile_rules()
pascal@7793 19 {
pascal@17683 20 ./bootstrap
slaxemulator@11086 21 ./configure \
slaxemulator@11086 22 --prefix=/usr \
slaxemulator@11086 23 $CONFIGURE_ARGS &&
pascal@7793 24 make &&
slaxemulator@11086 25 make DESTDIR=$DESTDIR install
pascal@7793 26 }
pascal@7793 27
pascal@7793 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@7793 29 genpkg_rules()
pascal@7793 30 {
pascal@15070 31 cp -a $install/usr $fs
pascal@7793 32 }