blob: 2e6326f92c380a8c3b89c4cde4aeb38acc8e7aed (
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
|
#!/bin/mkpkg
# description: Twitter color emoji font (SVGinOT)
# url: https://github.com/13rac1/twemoji-color-font
name=font-twemoji
version=15.1.0
release=1
depends=(fontconfig)
source=(https://github.com/13rac1/twemoji-color-font/releases/download/v$version/TwitterColorEmoji-SVGinOT-Linux-$version.tar.gz)
sha256sums=(
"c8a5302ee4e4c2188ce785edd84c50c616a07f6e99fe1b91aecba4e1db341295"
)
build() {
cd TwitterColorEmoji-SVGinOT-Linux-$version
install -d $PKG/usr/share/fonts/twemoji
install -m 644 TwitterColorEmoji-SVGinOT.ttf \
$PKG/usr/share/fonts/twemoji/
install -d $PKG/etc/fonts/conf.d
install -m 644 fontconfig/46-twemoji-color.conf \
$PKG/etc/fonts/conf.d/
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|