blob: 42a7bc58c1199510302ee830eed5b9fbf03fd4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
name: icu
kind: chunk
configure-commands:
- |
# As per commit 8874a7c7, We issue this sed command when
# building ICU libraries on arm architectures.
cpu=$(echo $TARGET | cut -d '-' -f 1)
case "$cpu" 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
|