wok-next diff f3/receipt @ rev 20887
Check Repology info up to p* packages
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Jul 13 17:30:55 2018 +0300 (2018-07-13) |
parents | fff2fdfa76f3 |
children | 43d01f45d682 |
line diff
1.1 --- a/f3/receipt Fri Mar 14 20:38:37 2014 +0000 1.2 +++ b/f3/receipt Fri Jul 13 17:30:55 2018 +0300 1.3 @@ -1,30 +1,24 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="f3" 1.8 VERSION="2.2" 1.9 CATEGORY="utilities" 1.10 -SHORT_DESC="An alternative to h2testw." 1.11 +SHORT_DESC="An alternative to h2testw" 1.12 MAINTAINER="paul@slitaz.org" 1.13 LICENSE="GPL3" 1.14 +WEB_SITE="http://oss.digirati.com.br/f3/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WEB_SITE="http://oss.digirati.com.br/f3/" 1.18 WGET_URL="git|git://github.com/AltraMayor/f3" 1.19 1.20 -DEPENDS="" 1.21 BUILD_DEPENDS="bzip2 git" 1.22 1.23 -# Rules to configure and make the package. 1.24 -compile_rules() 1.25 -{ 1.26 - cd $src 1.27 - make linux 1.28 +compile_rules() { 1.29 + make linux || return 1 1.30 + install -Dm755 $src/f3read $install/usr/bin/f3read 1.31 + install -Dm755 $src/f3write $install/usr/bin/f3write 1.32 } 1.33 1.34 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.35 -genpkg_rules() 1.36 -{ 1.37 - mkdir -p $fs/usr/bin 1.38 - cp -a $src/f3read $fs/usr/bin 1.39 - cp -a $src/f3write $fs/usr/bin 1.40 +genpkg_rules() { 1.41 + copy @std 1.42 } 1.43 -