wok-next diff memtester/receipt @ rev 20674
Up putty (0.70)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat May 12 05:17:48 2018 +0300 (2018-05-12) |
parents | c4e53a39395a |
children | d457c4e37c1b |
line diff
1.1 --- a/memtester/receipt Fri Mar 02 12:12:14 2018 +0200 1.2 +++ b/memtester/receipt Sat May 12 05:17:48 2018 +0300 1.3 @@ -1,29 +1,22 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="memtester" 1.8 VERSION="4.3.0" 1.9 CATEGORY="misc" 1.10 -SHORT_DESC="A userspace utility for testing the memory subsystem for faults." 1.11 +SHORT_DESC="A userspace utility for testing the memory subsystem for faults" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="http://pyropus.ca/software/memtester" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://pyropus.ca/software/memtester" 1.18 WGET_URL="$WEB_SITE/old-versions/$TARBALL" 1.19 -TAGS="test diagnostic RAM" 1.20 1.21 -DEPENDS="" 1.22 -BUILD_DEPENDS="" 1.23 - 1.24 -# Rules to configure and make the package. 1.25 -compile_rules() 1.26 -{ 1.27 - make 1.28 +compile_rules() { 1.29 + make && 1.30 + install -Dm755 $src/memtester $install/usr/bin/memtester 1.31 } 1.32 1.33 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.34 -genpkg_rules() 1.35 -{ 1.36 - mkdir -p $fs/usr/bin 1.37 - cp -a $src/memtester $fs/usr/bin 1.38 +genpkg_rules() { 1.39 + copy @std 1.40 + TAGS="test diagnostic RAM" 1.41 } 1.42 -