mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
23 lines
556 B
Bash
23 lines
556 B
Bash
pkgname=cldr-emoji-annotation
|
|
pkgver=31.0.1.1
|
|
_pkgver=31.0.1_1
|
|
pkgrel=1
|
|
pkgdesc="This package provides the emoji annotation file by language in CLDR."
|
|
arch=('any')
|
|
url="https://github.com/fujiwarat/cldr-emoji-annotation"
|
|
license=('LGPL')
|
|
depends=()
|
|
source=("https://github.com/fujiwarat/cldr-emoji-annotation/releases/download/${_pkgver}/${pkgname}-${_pkgver}.tar.gz")
|
|
md5sums=('1aac931f38e25518ec2602745037953f')
|
|
|
|
build() {
|
|
cd "$pkgname-$_pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$_pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|