blob: d786a76509d53d75abdf011142db40f9f5e8c9f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/mkpkg
# description: Foot terminal terminfo
# url: https://codeberg.org/dnkl/foot
name=foot-terminfo
version=1.27.0
release=1
depends=(ncurses)
source=(https://codeberg.org/dnkl/foot/archive/$version.tar.gz)
renames=($name-$version.tar.gz)
sha256sums=(
"f5917cad2d7b723b99873e53d78fd10ea202923d189aed5086591fc53b70b7e3"
)
build() {
cd foot
sed 's/@default_terminfo@/foot/g' foot.info | \
tic -x -o build -e foot,foot-direct -
install -d $PKG/usr/share/terminfo/f
cp build/f/* $PKG/usr/share/terminfo/f/
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|