wok view strace/receipt @ rev 20009

Add: description.txt and links revision.
author Leonardo Laporte <hackdorte@yandex.com>
date Thu Aug 03 05:22:36 2017 -0300 (2017-08-03)
parents 3b4e4318134e
children dfc23d2b90b1
line source
1 # SliTaz package receipt.
3 PACKAGE="strace"
4 VERSION="4.12"
5 CATEGORY="development"
6 SHORT_DESC="System call tracer"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://sourceforge.net/projects/strace/"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="analysis debugger diagnostic"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS && make && make install
18 find $install -name strace.1 -exec gzip -9 \{\} \;
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 cp -a $install/* $fs
25 }