mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 05:17:15 +08:00
23 lines
556 B
Bash
23 lines
556 B
Bash
|
pkgname=cldr-emoji-annotation
|
||
|
pkgver=31.0.0.1
|
||
|
_pkgver=31.0.0_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=('b1fd8b3712049cea5858cc09f6866260')
|
||
|
|
||
|
build() {
|
||
|
cd "$pkgname-$_pkgver"
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$pkgname-$_pkgver"
|
||
|
make DESTDIR="$pkgdir/" install
|
||
|
}
|