blob: 76c6f07f9ff6ec5f8b34c2601e9c6055c95c7bbd (
plain)
1 # Description: foot terminfo
2 # URL: https://codeberg.org/dnkl/foot
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=foot-terminfo
6 version=1.13.1
7 release=1
8 source=(https://codeberg.org/dnkl/foot/archive/$version.tar.gz)
9
10 build() {
11 cd foot
12
13 sed 's/@default_terminfo@/foot/g' foot.info | \
14 tic -x -o build -e foot,foot-direct -
15
16 install -dm 755 $PKG/usr/share/terminfo/f/
17 cp build/f/* $PKG/usr/share/terminfo/f/
18 }
|