wok view buildroot/receipt @ rev 24101

lrzip: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 16 16:33:44 2021 +0000 (2021-09-16)
parents fa44252c430c
children 9af0e03b8ad0
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 pkg-config Qt4-dev"
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 xconfig
34 EOT
35 }