1
0
forked from ports/opt

safecat: initial import

This commit is contained in:
Tilman Sauerbeck 2005-11-21 10:51:07 +00:00
parent 66c5e0a35f
commit 95ed0a4e90
3 changed files with 28 additions and 0 deletions

8
safecat/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/maildir
-rwxr-xr-x root/root usr/bin/safecat
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/maildir.1.gz
-rw-r--r-- root/root usr/man/man1/safecat.1.gz

1
safecat/.md5sum Normal file
View File

@ -0,0 +1 @@
cb59b35bae57495b54220269c6a24761 safecat-1.12.tar.gz

19
safecat/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: copy stdin to a qmail-style maildir.
# Maintainer: Tilman Sauerbeck, tilman at code-monkey dot de
# URL: http://www.pobox.com/~lbudney/linux/software/safecat.html
name=safecat
version=1.12
release=1
source=(http://www.pobox.com/~lbudney/linux/software/$name/$name-$version.tar.gz)
build () {
cd $name-$version
echo "/usr" > conf-root
make
install -d $PKG/usr/{bin,man/man1}
install -m 755 {safecat,maildir} $PKG/usr/bin
install -m 644 {safecat,maildir}.1 $PKG/usr/man/man1
}