blob: 13e185314b1725bae3f688ab9578ec9699d6f5f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
NAME="font-twemoji"
DESC="Twemoji font in TrueType format"
MAKEDEPS=""
PKG_VER=14.0.2
SOURCE="https://artefacts.whynothugo.nl/twemoji.ttf/2023-01-25_10-59/Twemoji-$PKG_VER.ttf"
package() {
depends="fontconfig"
install -Dm644 "$BUILD_ROOT"/Twemoji-$PKG_VER.ttf \
"$PKG_DEST"/usr/share/fonts/twemoji/Twemoji.ttf
}
|