wok-undigest view buildroot/receipt @ rev 55

Add buildroot
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 15 19:11:51 2010 +0200 (2010-04-15)
parents
children 7ac7a6a78613
line source
1 # SliTaz package receipt.
3 PACKAGE="buildroot"
4 VERSION="2010.02"
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"
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 cat <<EOT
25 Now you can do:
26 $ cd /usr/lib/buildroot
27 $ make menuconfig
28 EOT
29 }