blob: cdca39b6c1a85e428cd70da4d0f00748f632a955 (
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
|
#!/bin/mkpkg
# description: Metric-compatible fonts for Arial, Times New Roman, and Courier New
# url: https://github.com/liberationfonts/liberation-fonts
name=font-liberation
version=2.1.5
release=1
depends=(fontconfig)
source=(https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-2.1.5.tar.gz)
sha256sums=(
"7191c669bf38899f73a2094ed00f7b800553364f90e2637010a69c0e268f25d0"
)
build() {
install -d $PKG/usr/share/fonts/liberation
install -m 644 liberation-fonts-ttf-$version/*.ttf \
$PKG/usr/share/fonts/liberation/
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|