wok-stable view buildroot/receipt @ rev 12254

Up: slitaz-configs (4.9.1) - Last minute bug fix
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 10 13:54:27 2012 +0200 (2012-04-10)
parents 55d75f0e3533
children
line source
1 # SliTaz package receipt.
3 PACKAGE="buildroot"
4 VERSION="2011.11"
5 CATEGORY="development"
6 SHORT_DESC="Tools to build toolchains and root filesystems with uClibc."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.buildroot.org/"
10 WGET_URL="${WEB_SITE}downloads/$TARBALL"
11 DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra"
12 SUGGESTED="subversion bazaar git elfkickers ccache"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mkdir -p $fs/usr/lib
18 cp -a $src $fs/usr/lib/buildroot
19 }
21 # Pre and post install commands for Tazpkg.
22 post_install()
23 {
24 [ -L /usr/bin/wget ] && tazpkg get-install wget --forced
25 cat <<EOT
26 Now you can do:
27 $ cd /usr/lib/buildroot
28 $ make menuconfig
29 EOT
30 }