# HG changeset patch # User Paul Issott # Date 1466794780 -3600 # Node ID 140b8603135cd8e40ec82df0b8f39a8c498d6357 # Parent 15b2a2fdf54f1eed16e06c4b5b224ba7e8242c6b Add vmtouch diff -r 15b2a2fdf54f -r 140b8603135c vmtouch/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vmtouch/receipt Fri Jun 24 19:59:40 2016 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="vmtouch" +VERSION="20160624" +CATEGORY="utilities" +SHORT_DESC="The Virtual Memory Toucher." +MAINTAINER="paul@slitaz.org" +LICENSE="BSD" +WEB_SITE="https://hoytech.com/vmtouch/" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="git|git://github.com/hoytech/vmtouch" + +#DEPENDS="" +BUILD_DEPENDS="git bzip2" + +# Rules to configure and make the package. +compile_rules() +{ + gcc -Wall -O2 -o vmtouch vmtouch.c +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/$PACKAGE $fs/usr/bin +} +