desktop/cldr-emoji-annotation/PKGBUILD

27 lines
790 B
Bash

# Contributions from Arch:
# Maintainer: Felix Yan <felixonmars@archlinux.org>
pkgname=cldr-emoji-annotation
pkgver=33.1.0.0
_tag=33.1.0_0
pkgrel=1
pkgdesc="Emoji annotation files in CLDR"
arch=('any')
url="https://github.com/fujiwarat/cldr-emoji-annotation"
license=('custom')
source=("$pkgname-$pkgver.tar.gz::https://github.com/fujiwarat/cldr-emoji-annotation/archive/$_tag.tar.gz")
sha512sums=('57dc2b7c8ce4b287eb83113b4d66f5359ce0e03a86477926705864d997bf87a5638dd66414b8ec4549a887cd328c9f996249269be4ca05f0d86d00393e55c513')
build() {
cd cldr-emoji-annotation-$_tag
./autogen.sh --prefix=/usr
make
}
package() {
cd cldr-emoji-annotation-$_tag
make DESTDIR="$pkgdir" install
install -Dm644 unicode-license.txt "$pkgdir"/usr/share/licenses/$pkgname/unicode-license.txt
}