wok annotate strace/receipt @ rev 23999

syslinux/iso2exe: read isolinux.cfg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 12 07:47:12 2021 +0000 (2021-01-12)
parents dfc23d2b90b1
children 5ea0ce1cecc0
rev   line source
erjo@442 1 # SliTaz package receipt.
erjo@442 2
erjo@442 3 PACKAGE="strace"
Hans-G?nter@23673 4 VERSION="5.6"
pascal@741 5 CATEGORY="development"
Hans-G?nter@21977 6 TAGS="analysis debugger diagnostic"
Hans-G?nter@21977 7 SHORT_DESC="System call tracer."
erjo@784 8 MAINTAINER="erjo@slitaz.org"
pascal@15593 9 LICENSE="BSD"
Hans-G?nter@21977 10 WEB_SITE="https://strace.io/"
Hans-G?nter@21977 11
al@19168 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@21977 13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
pascal@15593 14
erjo@442 15 # Rules to configure and make the package.
erjo@442 16 compile_rules()
erjo@442 17 {
Hans-G?nter@21977 18 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21977 19 make &&
Hans-G?nter@21977 20 make install
Hans-G?nter@23673 21
al@19168 22 find $install -name strace.1 -exec gzip -9 \{\} \;
erjo@442 23 }
erjo@442 24
erjo@442 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@442 26 genpkg_rules()
erjo@442 27 {
Hans-G?nter@23673 28 cp -a $install/* $fs
erjo@442 29 }