wok-undigest rev 55

Add buildroot
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 15 19:11:51 2010 +0200 (2010-04-15)
parents 15a49c872348
children 86e844adb8f6
files buildroot/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/buildroot/receipt	Thu Apr 15 19:11:51 2010 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="buildroot"
     1.7 +VERSION="2010.02"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Tools to build toolchains and root filesystems with uClibc."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.12 +WEB_SITE="http://www.buildroot.org/"
    1.13 +WGET_URL="${WEB_SITE}downloads/$TARBALL"
    1.14 +DEPENDS="slitaz-toolchain ncurses wget"
    1.15 +SUGGESTED="subversion bazaar git elfkickers ccache"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/lib
    1.21 +	cp -a $src $fs/usr/lib/buildroot
    1.22 +}
    1.23 +
    1.24 +# Pre and post install commands for Tazpkg.
    1.25 +post_install()
    1.26 +{
    1.27 +	cat <<EOT
    1.28 +Now you can do:
    1.29 +$ cd /usr/lib/buildroot
    1.30 +$ make menuconfig
    1.31 +EOT
    1.32 +}
    1.33 +