wok annotate f3/receipt @ rev 21051
updated input-utils (20081014 -> 1.3)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 13 13:59:18 2019 +0100 (2019-03-13) |
parents | |
children | 0795a5e4e5d3 |
rev | line source |
---|---|
paul@16074 | 1 # SliTaz package receipt. |
paul@16074 | 2 |
paul@16074 | 3 PACKAGE="f3" |
paul@16074 | 4 VERSION="2.2" |
paul@16074 | 5 CATEGORY="utilities" |
paul@16074 | 6 SHORT_DESC="An alternative to h2testw." |
paul@16074 | 7 MAINTAINER="paul@slitaz.org" |
paul@16074 | 8 LICENSE="GPL3" |
paul@16074 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@16074 | 10 WEB_SITE="http://oss.digirati.com.br/f3/" |
paul@16074 | 11 WGET_URL="git|git://github.com/AltraMayor/f3" |
paul@16074 | 12 |
paul@16074 | 13 DEPENDS="" |
paul@16074 | 14 BUILD_DEPENDS="bzip2 git" |
paul@16074 | 15 |
paul@16074 | 16 # Rules to configure and make the package. |
paul@16074 | 17 compile_rules() |
paul@16074 | 18 { |
paul@16074 | 19 cd $src |
paul@16074 | 20 make linux |
paul@16074 | 21 } |
paul@16074 | 22 |
paul@16074 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@16074 | 24 genpkg_rules() |
paul@16074 | 25 { |
paul@16074 | 26 mkdir -p $fs/usr/bin |
paul@16074 | 27 cp -a $src/f3read $fs/usr/bin |
paul@16074 | 28 cp -a $src/f3write $fs/usr/bin |
paul@16074 | 29 } |
paul@16074 | 30 |