blob: 2e07274e82795c283168d7bec08345d16ce79e17 (
plain)
1 # Description: draw boxes around text
2 # URL: https://boxes.thomasjensen.com/boxes.shtml
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libpcre2 libunistring
5
6 name=boxes
7 version=2.2.0
8 release=1
9 source=(https://github.com/ascii-boxes/boxes/archive/v$version/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13
14 sed -i -e "s|^GLOBALCONF.*|GLOBALCONF = /usr/share/boxes/config|" Makefile
15
16 make
17
18 install -D out/boxes $PKG/usr/bin/boxes
19 install -D doc/boxes.1 $PKG/usr/share/man/man1/boxes.1
20 install -D boxes-config $PKG/usr/share/boxes/config
21 }
|