wok-current annotate strace/receipt @ rev 15828
bazaar-tools: I think cookutils only uses real wget when https is in WGET_URL.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Jan 24 10:50:53 2014 +0000 (2014-01-24) |
parents | 02bbaa9d12ba |
children | a6f7b6b890c2 |
rev | line source |
---|---|
erjo@442 | 1 # SliTaz package receipt. |
erjo@442 | 2 |
erjo@442 | 3 PACKAGE="strace" |
erjo@5742 | 4 VERSION="4.5.20" |
pascal@741 | 5 CATEGORY="development" |
erjo@442 | 6 SHORT_DESC="Trace system calls and signals" |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15593 | 8 LICENSE="BSD" |
erjo@442 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@442 | 10 WEB_SITE="http://sourceforge.net/projects/strace/" |
erjo@442 | 11 WGET_URL="http://ovh.dl.sourceforge.net/sourceforge/strace/$TARBALL" |
erjo@442 | 12 |
pascal@15593 | 13 DEPENDS="" |
pascal@15593 | 14 |
erjo@442 | 15 # Rules to configure and make the package. |
erjo@442 | 16 compile_rules() |
erjo@442 | 17 { |
erjo@442 | 18 cd $src |
erjo@442 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
erjo@442 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS |
erjo@442 | 21 make |
pascal@15593 | 22 make DESTDIR=$DESTDIR install |
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 { |
erjo@442 | 28 mkdir -p $fs/usr |
pascal@15593 | 29 cp -a $install/usr/bin $fs/usr |
erjo@442 | 30 } |
erjo@442 | 31 |
erjo@442 | 32 |