summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cfb0c3d70d8855a0316181b95e3332a4828e495b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Contributor: ant32 <antreimer@gmail.com>
# Contributor: Rustam Tsurik <rustam.tsurik@gmail.com>
pkgname=icu48
_pkgname=icu
pkgver=4.8.1.1
pkgrel=3
pkgdesc="International Components for Unicode library, version 4.8"
arch=(i686 x86_64)
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"
        "malayalam-rendering.patch"
        "CVE-2011-4599.patch"
        "indic-ccmp.patch"
        "mlym-crash.patch"
        "CVE-2013-0900.patch"
        "fix-test.diff")

md5sums=('ea93970a0275be6b42f56953cd332c17'
         '9581cfaccbf93b6d6f7f7644bebcdafa'
         '835c9e3ae0b76aa88a6ce144a42a3bce'
         '6602e6d9727376174cbb1b688e5e3325'
         'a6a9daa1e3655c5058148af8903a443b'
         '9528996e1e2099bb79d25fbd799a511e'
         '766a677946f50029e0c01f5b8d30afec')

prepare() {
  cd ${srcdir}/icu/source

  # apply security patches + fixes for Malayalan encoding
  # patches taken from the Debian package, 
  # http://ftp.us.debian.org/debian/pool/main/i/icu/icu_4.8.1.1-12.debian.tar.gz

  patch -p2 -i ../../malayalam-rendering.patch
  patch -p2 -i ../../CVE-2011-4599.patch
  patch -p2 -i ../../indic-ccmp.patch
  patch -p2 -i ../../mlym-crash.patch
  patch -p2 -i ../../CVE-2013-0900.patch
  patch -p2 -i ../../fix-test.diff
}

build() {
  cd ${srcdir}/icu/source

  ./configure --prefix=/usr \
              --sysconfdir=/etc \
              --mandir=/usr/share/man
  # getting build failures -j1   '/bin/sh: ./../../bin/uconv: Text file busy'
  make -j1
}

check() {
  cd "$srcdir/icu/source"
  make -k check # passes all
}

package() {
  cd "${srcdir}/icu/source"

  # Copy only .so libs to the destination dir
  mkdir -p "${pkgdir}/usr/lib"
  cp -a lib/libicu*48* "${pkgdir}/usr/lib"

  # Install the license
  install -Dm644 ${srcdir}/icu/license.html ${pkgdir}/usr/share/licenses/icu48/license.html
}