wok annotate buildroot/receipt @ rev 16506

Add libsearpc to bith arch + python-simplejson to ARM
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 24 15:38:01 2014 +0200 (2014-04-24)
parents 5ee7ba5d5f57
children c7d0fffbbc6d
rev   line source
pascal@11218 1 # SliTaz package receipt.
pascal@11218 2
pascal@11218 3 PACKAGE="buildroot"
pascal@11596 4 VERSION="2011.11"
pascal@11218 5 CATEGORY="development"
pascal@11218 6 SHORT_DESC="Tools to build toolchains and root filesystems with uClibc."
pascal@11218 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="GPL2"
pascal@11218 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@11218 10 WEB_SITE="http://www.buildroot.org/"
pascal@11218 11 WGET_URL="${WEB_SITE}downloads/$TARBALL"
pascal@15579 12 SUGGESTED="subversion bazaar git elfkickers ccache"
pascal@15579 13
pascal@11218 14 DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra"
pascal@11218 15
pascal@11218 16 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11218 17 genpkg_rules()
pascal@11218 18 {
pascal@11218 19 mkdir -p $fs/usr/lib
pascal@11218 20 cp -a $src $fs/usr/lib/buildroot
pascal@11218 21 }
pascal@11218 22
pascal@11218 23 # Pre and post install commands for Tazpkg.
pascal@11218 24 post_install()
pascal@11218 25 {
pascal@11218 26 [ -L /usr/bin/wget ] && tazpkg get-install wget --forced
pascal@11218 27 cat <<EOT
pascal@11218 28 Now you can do:
pascal@11218 29 $ cd /usr/lib/buildroot
pascal@11218 30 $ make menuconfig
pascal@11218 31 EOT
pascal@11218 32 }
pascal@11218 33