preload: initial import

This commit is contained in:
Mark Rosenstand 2006-10-28 23:28:31 +02:00
parent 762061555e
commit 3f8c84c5f9
3 changed files with 37 additions and 0 deletions

14
preload/.footprint Normal file
View File

@ -0,0 +1,14 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/preload.conf
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/preload.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/preload
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/lib/
drwxr-xr-x root/root var/lib/preload/
-rw-rw---- root/root var/lib/preload/preload.state (EMPTY)
drwxr-xr-x root/root var/log/
-rw-r--r-- root/root var/log/preload.log (EMPTY)

1
preload/.md5sum Normal file
View File

@ -0,0 +1 @@
9c98bc97ec261925c9a40e5084c9c149 preload-0.4.tar.gz

22
preload/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: Adaptive readahead daemon
# URL: http://sourceforge.net/projects/preload/
# Maintainer: Mark Rosenstand, mark at borkware dot net
# Depends on: glib
name=preload
version=0.4
release=1
source=(http://dl.sourceforge.net/sourceforge/preload/preload-$version.tar.gz)
build() {
cd preload-$version
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
make DESTDIR=$PKG install
cd $PKG
rm -r etc/{rc.d,logrotate.d,sysconfig} \
usr/share/doc
rmdir usr/share
chmod -v 660 var/lib/preload/preload.state
}