wok-current rev 19231
Add vmtouch
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Fri Jun 24 19:59:40 2016 +0100 (2016-06-24) |
parents | 15b2a2fdf54f |
children | 4b4a592e985e |
files | vmtouch/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/vmtouch/receipt Fri Jun 24 19:59:40 2016 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="vmtouch" 1.7 +VERSION="20160624" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="The Virtual Memory Toucher." 1.10 +MAINTAINER="paul@slitaz.org" 1.11 +LICENSE="BSD" 1.12 +WEB_SITE="https://hoytech.com/vmtouch/" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WGET_URL="git|git://github.com/hoytech/vmtouch" 1.15 + 1.16 +#DEPENDS="" 1.17 +BUILD_DEPENDS="git bzip2" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + gcc -Wall -O2 -o vmtouch vmtouch.c 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr/bin 1.29 + cp -a $src/$PACKAGE $fs/usr/bin 1.30 +} 1.31 +