wok view ptxdist/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents c3910dbc8115
children 7f9c1a9f91b2
line source
1 # SliTaz package receipt.
3 PACKAGE="ptxdist"
4 VERSION="2019.06.0"
5 CATEGORY="development"
6 SHORT_DESC="Reproducable Embedded Linux Systems."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.ptxdist.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://public.pengutronix.de/software/ptxdist/$TARBALL"
14 DEPENDS="ncurses ncursesw-extra slitaz-toolchain wget"
15 SUGGESTED="bazaar ccache elfkickers git subversion"
17 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p $fs/usr/lib
21 cp -a $src $fs/usr/lib/buildroot
22 }
24 # Pre and post install commands for Tazpkg.
25 post_install()
26 {
27 [ -L "$1/usr/bin/wget" ] && tazpkg get-install wget --forced --root="${1:-/}"
28 cat <<EOT
29 Now you can do:
30 $ cd /usr/lib/buildroot
31 $ make menuconfig
32 EOT
33 }