blob: 2873fe035997106d40cd26a7ac186378bccc8d81 (
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
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
pkgname=cldr-emoji-annotation
pkgver=33.1.0_p0
_tag=${pkgver/_p/_}
pkgrel=0
pkgdesc="Emoji annotation files in CLDR"
arch="noarch"
url="https://github.com/fujiwarat/cldr-emoji-annotation"
license="Unicode-DFS-2016"
makedepends="automake autoconf"
source="$pkgname-$pkgver.tar.gz::https://github.com/fujiwarat/$pkgname/archive/$_tag.tar.gz"
builddir="$srcdir/$pkgname-$_tag"
build() {
cd "$builddir"
./autogen.sh --prefix=/usr
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
install -Dm644 unicode-license.txt "$pkgdir"/usr/share/licenses/$pkgname/license
}
sha512sums="57dc2b7c8ce4b287eb83113b4d66f5359ce0e03a86477926705864d997bf87a5638dd66414b8ec4549a887cd328c9f996249269be4ca05f0d86d00393e55c513 cldr-emoji-annotation-33.1.0_p0.tar.gz"
|