mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 11:04:36 +08:00
25 lines
620 B
Bash
25 lines
620 B
Bash
pkgname=libunistring
|
|
pkgver=0.9.7
|
|
pkgrel=1
|
|
pkgdesc="Library for manipulating Unicode strings and C strings."
|
|
url="https://www.gnu.org/software/libunistring/"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
install=${pkgname}.install
|
|
source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig})
|
|
md5sums=('8e663454aa372181ee8e46edaa3ba4c8'
|
|
'SKIP')
|
|
validpgpkeys=('462225C3B46F34879FC8496CD605848ED7E69871') # Daiki Ueno
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|