summaryrefslogtreecommitdiff
path: root/repo/system/icu.xibuild
blob: f578298382c4f6947f6f36f0641c9811433bcb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

MAKEDEPS="python"
DEPS="bash"

PKG_VER=70.1
SOURCE=https://github.com/unicode-org/icu/releases/download/release-$(echo $PKG_VER | sed 's/\./-/g')/icu4c-$(echo $PKG_VER | sed 's/\./_/g')-src.tgz
DESC="International Components for Unicode library"

build () {
    cd source                                    &&

    ./configure --prefix=/usr                    &&
    make

}

package () {
    make DESTDIR=$PKG_DEST install
}