wok-next annotate ptxdist/receipt @ rev 14652
Add licenses, just for the seed (for example). Anyone can delete this.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jun 04 22:20:53 2013 +0000 (2013-06-04) |
parents | |
children | 7896f0694ef6 |
rev | line source |
---|---|
pascal@14379 | 1 # SliTaz package receipt. |
pascal@14379 | 2 |
pascal@14379 | 3 PACKAGE="ptxdist" |
pascal@14379 | 4 VERSION="2012.03.0" |
pascal@14379 | 5 CATEGORY="development" |
pascal@14379 | 6 SHORT_DESC="Reproducable Embedded Linux Systems." |
pascal@14379 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14379 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@14379 | 9 WEB_SITE="http://www.ptxdist.org/" |
pascal@14379 | 10 WGET_URL="${WEB_SITE}software/$PACKAGE/download/$TARBALL" |
pascal@14379 | 11 |
pascal@14379 | 12 DEPENDS="slitaz-toolchain ncurses wget ncursesw-extra" |
pascal@14379 | 13 SUGGESTED="subversion bazaar git elfkickers ccache" |
pascal@14379 | 14 |
pascal@14379 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14379 | 16 genpkg_rules() |
pascal@14379 | 17 { |
pascal@14379 | 18 mkdir -p $fs/usr/lib |
pascal@14379 | 19 cp -a $src $fs/usr/lib/buildroot |
pascal@14379 | 20 } |
pascal@14379 | 21 |
pascal@14379 | 22 # Pre and post install commands for Tazpkg. |
pascal@14379 | 23 post_install() |
pascal@14379 | 24 { |
pascal@14379 | 25 [ -L /usr/bin/wget ] && tazpkg get-install wget --forced |
pascal@14379 | 26 cat <<EOT |
pascal@14379 | 27 Now you can do: |
pascal@14379 | 28 $ cd /usr/lib/buildroot |
pascal@14379 | 29 $ make menuconfig |
pascal@14379 | 30 EOT |
pascal@14379 | 31 } |
pascal@14379 | 32 |