blob: 0a4df0ff4eaa07910c536c6c697e2bfd4dddd6a2 (
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: Typeface carefully crafted for computer screens
# url: https://rsms.me/inter/
name=font-inter
version=4.1
release=1
depends=(fontconfig)
makedeps=(unzip)
source=(https://github.com/rsms/inter/releases/download/v$version/Inter-$version.zip)
renames=($name-$version.zip)
extract() {
unzip -o $name-$version.zip -d $SRC
}
sha256sums=(
"9883fdd4a49d4fb66bd8177ba6625ef9a64aa45899767dde3d36aa425756b11e"
)
build() {
install -d $PKG/usr/share/fonts/inter
install -m 644 extras/ttf/*.ttf \
$PKG/usr/share/fonts/inter/
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|