mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 18:57:48 +08:00
23 lines
626 B
Bash
23 lines
626 B
Bash
# Contributions from Arch: https://www.archlinux.org/packages/extra/i686/libunicodenames/
|
|
|
|
pkgname=libunicodenames
|
|
pkgver=1.1.0_beta1
|
|
pkgrel=1
|
|
pkgdesc='Library for retrieving Unicode annotation data'
|
|
url='https://bitbucket.org/sortsmill/libunicodenames'
|
|
arch=('x86_64')
|
|
license=('GPL3')
|
|
source=("https://bitbucket.org/sortsmill/${pkgname}/downloads/${pkgname}-${pkgver}.tar.xz")
|
|
sha1sums=('f82d9f99d534144dd4c28c28ecff029f3116c5b4')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make PREFIX=/usr
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make PREFIX=/usr DESTDIR="${pkgdir}" install
|
|
}
|