mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:57:32 +08:00
27 lines
887 B
Bash
27 lines
887 B
Bash
# $Id: PKGBUILD 79200 2010-05-01 18:07:48Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: Art Gramlich <art@gramlich-net.com>
|
|
|
|
pkgname=icu
|
|
pkgver=4.6
|
|
pkgrel=1
|
|
pkgdesc="International Components for Unicode library"
|
|
arch=(i686 x86_64)
|
|
url="http://www.icu-project.org/"
|
|
license=('custom:"icu"')
|
|
depends=('gcc-libs' 'sh')
|
|
source=(http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver//./_}-src.tgz
|
|
#http://download.icu-project.org/files/${pkgname}4c/${pkgver}/${pkgname}4c-${pkgver/./_}-src.tgz
|
|
)
|
|
md5sums=('43e56b71c407be5154de681eaa646a4a')
|
|
|
|
build() {
|
|
cd ${srcdir}/icu/source
|
|
./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
|
|
make || return 1
|
|
make -j1 DESTDIR=${pkgdir} install || return 1
|
|
|
|
# Install license
|
|
install -Dm644 ${srcdir}/icu/license.html ${pkgdir}/usr/share/licenses/icu/license.html
|
|
}
|