blob: af6d7e4fe3e67ee561e7e017e2e40ff1fca6c6f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# $Id: PKGBUILD 171516 2012-11-18 10:27:49Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Art Gramlich <art@gramlich-net.com>
pkgname=icu
pkgver=50.1
pkgrel=2
pkgdesc="International Components for Unicode library"
arch=(i686 x86_64 'mips64el')
url="http://www.icu-project.org/"
license=('custom:"icu"')
depends=('gcc-libs>=4.7.1-5' '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
icu.8198.revert.icu5431.patch changeset_32780.diff)
md5sums=('cf7bf9e56aa6c2057a8b6f464046483e'
'ebd5470fc969c75e52baf4af94a9ee82'
'58f4b655e40dddc8e316600019b491b2')
build() {
cd ${srcdir}/icu/source
# fix Malayalam encoding https://bugzilla.redhat.com/show_bug.cgi?id=654200
patch -Rp3 -i ${srcdir}/icu.8198.revert.icu5431.patch
# fix building clients without c++11 http://bugs.icu-project.org/trac/changeset/32780
patch -Np4 -i ${srcdir}/changeset_32780.diff
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man
make
}
check() {
cd "$srcdir/icu/source"
make -k check # passes all
}
package() {
cd ${srcdir}/icu/source
make -j1 DESTDIR=${pkgdir} install
# Install license
install -Dm644 ${srcdir}/icu/license.html ${pkgdir}/usr/share/licenses/icu/license.html
}
|