wok-next annotate vmtouch/receipt @ rev 20634

oxine: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 27 12:51:30 2018 +0200 (2018-04-27)
parents 867f233184fc
children d5aab818505e
rev   line source
paul@19231 1 # SliTaz package receipt.
paul@19231 2
paul@19231 3 PACKAGE="vmtouch"
paul@19392 4 VERSION="1.1.0"
paul@19231 5 CATEGORY="utilities"
paul@19231 6 SHORT_DESC="The Virtual Memory Toucher."
paul@19231 7 MAINTAINER="paul@slitaz.org"
paul@19231 8 LICENSE="BSD"
paul@19231 9 WEB_SITE="https://hoytech.com/vmtouch/"
paul@19231 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
paul@19231 11 WGET_URL="git|git://github.com/hoytech/vmtouch"
paul@19231 12
paul@19231 13 #DEPENDS=""
paul@19231 14 BUILD_DEPENDS="git bzip2"
paul@19231 15
paul@19231 16 # Rules to configure and make the package.
paul@19231 17 compile_rules()
paul@19231 18 {
pascal@20545 19 gcc -Wall -O2 -o vmtouch vmtouch.c &&
pascal@20545 20 mkdir -p $install/usr/bin &&
pascal@20545 21 cp -a $PACKAGE $install/usr/bin
paul@19231 22 }
paul@19231 23
paul@19231 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@19231 25 genpkg_rules()
paul@19231 26 {
pascal@20545 27 cp -a $install/usr $fs/
paul@19231 28 }