wok view buildroot/receipt @ rev 22939

updated iasl (20190215 -> 20200214)
author Hans-G?nter Theisgen
date Thu Feb 27 15:05:28 2020 +0100 (2020-02-27)
parents 1e155268c3d0
children bd734fc43792
line source
1 # SliTaz package receipt.
3 PACKAGE="buildroot"
4 VERSION="2019.11"
5 CATEGORY="development"
6 SHORT_DESC="Tools to build toolchains and root filesystems with uClibc."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.buildroot.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="${WEB_SITE}downloads/$TARBALL"
14 SUGGESTED="subversion bazaar git elfkickers ccache bison flex gettext texinfo"
15 DEPENDS="bash bc bzip2 ncurses ncurses-dev ncursesw-extra patch \
16 perl python rsync slitaz-toolchain tar unzip wget"
18 # Rules to gen a SliTaz package suitable for Tazpkg.
19 genpkg_rules()
20 {
21 mkdir -p $fs/usr/lib
22 cp -a $src $fs/usr/lib/buildroot
23 }
25 # Pre and post install commands for Tazpkg.
26 post_install()
27 {
28 [ -L $1/usr/bin/wget ] &&
29 chroot "$1/" tazpkg get-install wget --forced
30 cat <<EOT
31 Now you can do:
32 $ cd /usr/lib/buildroot
33 $ make menuconfig
34 EOT
35 }