vmtouch: new port

This commit is contained in:
Mikhail Kolesnik 2013-01-22 20:22:27 +02:00
parent 81af0c1ea6
commit befc9885eb
3 changed files with 24 additions and 0 deletions

6
vmtouch/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/vmtouch
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/vmtouch.8.gz

2
vmtouch/.md5sum Normal file
View File

@ -0,0 +1,2 @@
5586c6a9c79d93acd1a07342ea487a51 vmtouch.8
575d072ee193784b3e453f90e44cb070 vmtouch.c

16
vmtouch/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: A portable file system cache diagnostics and control tool
# URL: http://hoytech.com/vmtouch/
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=vmtouch
version=0.8.0
release=1
source=(http://hoytech.com/$name/$name.c \
http://hoytech.com/$name/$name.8)
build() {
gcc $CFLAGS -o $name $name.c
install -m 644 -D $name.8 $PKG/usr/man/man8/$name.8
install -m 755 -D $name $PKG/usr/bin/$name
}