apple-emoji-linux 18.4

Apple Color Emoji is a color typeface used by iOS and macOS to display emoji

Не проверено
 1name=apple-emoji-linux
 2version=18.4 # upstream version
 3release=1
 4summary="Apple Color Emoji is a color typeface used by iOS and macOS to display emoji"
 5group="Other" # See /usr/lib/rpm/GROUPS for valid values
 6desc="Apple Color Emoji is a color typeface used by iOS and macOS to display emoji"
 7maintainer="Anton Palgunov <toxblh@gmail.com>"
 8# Array of Go arches (go tool dist list | cut -d/ -f2 | sort | uniq) or "all"
 9architectures=("all")
10homepage="https://github.com/samuelngs/apple-emoji-linux"
11license=("custom")
12
13provides=(emoji-font)
14conflicts=()
15
16sources=(
17	"$homepage/releases/download/v$version/AppleColorEmoji.ttf"
18	"local:///75-apple-color-emoji.conf"
19)
20
21checksums=(
22	sha256:a4fd077bd11437b4940d8cf08f4084e1edfd4ae359f92573ec576652f885eabd
23	sha256:f72154069e808e26f1ed800a33cfaba87c268e7e927a3d5987fde0159e341160
24)
25
26# Automatically generate runtime dependencies and provided symbols
27auto_req=1
28auto_prov=1
29
30package() {
31	install -Dm644 "$srcdir/AppleColorEmoji.ttf" "$pkgdir/usr/share/fonts/ttf/apple-color-emoji/AppleColorEmoji.ttf"
32	install -Dm644 -t "$pkgdir/usr/share/fontconfig/conf.avail" 75-apple-color-emoji.conf
33	install -d "$pkgdir/etc/fonts/conf.d"
34	ln -s "/usr/share/fontconfig/conf.avail/75-apple-color-emoji.conf" "$pkgdir/etc/fonts/conf.d/"
35}