boxes: initial commit

This commit is contained in:
Thomas Penteker 2009-03-14 22:57:46 +01:00
parent dc3bef8047
commit aeb0871004
3 changed files with 28 additions and 0 deletions

9
boxes/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/boxes
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rwxr-xr-x root/root usr/man/man1/boxes.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/boxes/
-rwxr-xr-x root/root usr/share/boxes/config

1
boxes/.md5sum Normal file
View File

@ -0,0 +1 @@
d2ef9fa28a87bf32b3fe0c47ab82fa97 boxes-1.1.src.tar.gz

18
boxes/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: draw boxes around text
# URL: http://boxes.thomasjensen.com/boxes.shtml
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on:
name=boxes
version=1.1
release=1
source=(http://boxes.thomasjensen.com/download/$name-$version.src.tar.gz)
build () {
cd $name-$version
sed -i -e "s|^GLOBALCONF.*|GLOBALCONF = /usr/share/boxes/config|" Makefile
make
install -D src/boxes $PKG/usr/bin/boxes
install -D doc/boxes.1 $PKG/usr/man/man1/boxes.1
install -D boxes-config $PKG/usr/share/boxes/config
}