19 lines
535 B
Plaintext
19 lines
535 B
Plaintext
# 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.2
|
|
release=1
|
|
source=(https://github.com/ascii-boxes/boxes/archive/v$version.zip)
|
|
|
|
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
|
|
}
|