blob: 5c269ee04d134dbb553dfbb47e8bc8f9e9ef7255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: icu
kind: chunk
configure-commands:
- |
# As per commit 8874a7c7, We issue this sed command when
# building ICU libraries on arm architectures.
case "$MORPH_ARCH" in
*arm*)
sed -e 's/LDFLAGSICUDT/#LDFLAGSICUDT/' -i source/config/mh-linux
;;
*)
;;
esac
cd source
./runConfigureICU Linux --prefix=/usr --sysconfdir=/etc
build-commands:
- cd source; unset TARGET ; make
install-commands:
- cd source; unset TARGET ; make DESTDIR="$DESTDIR" install
|