wok annotate ptxdist/receipt @ rev 21724
updated ptxdist again (2012.03.0 -> 2019.06.0)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jun 12 15:14:06 2019 +0100 (2019-06-12) |
parents | dac886dad97b |
children | 91e30acbe640 |
rev | line source |
---|---|
pascal@14379 | 1 # SliTaz package receipt. |
pascal@14379 | 2 |
pascal@14379 | 3 PACKAGE="ptxdist" |
Hans-G?nter@21723 | 4 VERSION="2019.06.0" |
pascal@14379 | 5 CATEGORY="development" |
pascal@14379 | 6 SHORT_DESC="Reproducable Embedded Linux Systems." |
pascal@14379 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
Hans-G?nter@21723 | 9 WEB_SITE="https://www.ptxdist.org/" |
Hans-G?nter@21723 | 10 |
pascal@14379 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@14379 | 12 WGET_URL="${WEB_SITE}software/$PACKAGE/download/$TARBALL" |
pascal@14379 | 13 |
Hans-G?nter@21723 | 14 DEPENDS="ncurses ncursesw-extra slitaz-toolchain wget" |
Hans-G?nter@21723 | 15 SUGGESTED="bazaar ccache elfkickers git subversion" |
pascal@14379 | 16 |
pascal@14379 | 17 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14379 | 18 genpkg_rules() |
pascal@14379 | 19 { |
pascal@14379 | 20 mkdir -p $fs/usr/lib |
Hans-G?nter@21723 | 21 cp -a $src $fs/usr/lib/buildroot |
pascal@14379 | 22 } |
pascal@14379 | 23 |
pascal@14379 | 24 # Pre and post install commands for Tazpkg. |
pascal@14379 | 25 post_install() |
pascal@14379 | 26 { |
pascal@18730 | 27 [ -L "$1/usr/bin/wget" ] && tazpkg get-install wget --forced --root="${1:-/}" |
pascal@14379 | 28 cat <<EOT |
pascal@14379 | 29 Now you can do: |
pascal@14379 | 30 $ cd /usr/lib/buildroot |
pascal@14379 | 31 $ make menuconfig |
pascal@14379 | 32 EOT |
pascal@14379 | 33 } |
Hans-G?nter@21724 | 34 |