diff options
author | Thomas Penteker <tek@serverop.de> | 2009-03-14 22:57:46 +0100 |
---|---|---|
committer | Thomas Penteker <tek@serverop.de> | 2009-03-14 22:57:46 +0100 |
commit | aeb0871004a072e7a98dbfef96d491a78a3832dd (patch) | |
tree | ae637b7c4d0af3f10b8313955ec983b9dc12f539 /boxes | |
parent | dc3bef80478a9ad3938b915deefa3609cdd55e16 (diff) | |
download | contrib-aeb0871004a072e7a98dbfef96d491a78a3832dd.tar.gz contrib-aeb0871004a072e7a98dbfef96d491a78a3832dd.tar.xz |
boxes: initial commit
Diffstat (limited to 'boxes')
-rw-r--r-- | boxes/.footprint | 9 | ||||
-rw-r--r-- | boxes/.md5sum | 1 | ||||
-rw-r--r-- | boxes/Pkgfile | 18 |
3 files changed, 28 insertions, 0 deletions
diff --git a/boxes/.footprint b/boxes/.footprint new file mode 100644 index 000000000..903505971 --- /dev/null +++ b/boxes/.footprint @@ -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 diff --git a/boxes/.md5sum b/boxes/.md5sum new file mode 100644 index 000000000..bff93fb5e --- /dev/null +++ b/boxes/.md5sum @@ -0,0 +1 @@ +d2ef9fa28a87bf32b3fe0c47ab82fa97 boxes-1.1.src.tar.gz diff --git a/boxes/Pkgfile b/boxes/Pkgfile new file mode 100644 index 000000000..9df46b9e5 --- /dev/null +++ b/boxes/Pkgfile @@ -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 +} |