wok view ptxdist/receipt @ rev 23452

updated ptxdist (2019.06.0 -> 2020.03.0)
author Hans-G?nter Theisgen
date Fri Apr 03 10:44:44 2020 +0100 (2020-04-03)
parents 91e30acbe640
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="ptxdist"
4 VERSION="2020.03.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" ] &&
28 tazpkg get-install wget --forced --root="${1:-/}"
29 cat <<EOT
30 Now you can do:
31 $ cd /usr/lib/buildroot
32 $ make menuconfig
33 EOT
34 }