wok diff buildroot/receipt @ rev 11244

Up: elfkickers (3.0)
author Alexander Medvedev <devl547@gmail.com>
date Mon Nov 07 08:32:39 2011 +0300 (2011-11-07)
parents
children 5ee7ba5d5f57
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/buildroot/receipt	Mon Nov 07 08:32:39 2011 +0300
     1.3 @@ -0,0 +1,31 @@
     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 ncursesw-extra"
    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 +	[ -L /usr/bin/wget ] && tazpkg get-install wget --forced
    1.28 +	cat <<EOT
    1.29 +Now you can do:
    1.30 +$ cd /usr/lib/buildroot
    1.31 +$ make menuconfig
    1.32 +EOT
    1.33 +}
    1.34 +