summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--strata/icu-common.morph10
-rw-r--r--strata/icu-common/icu.morph20
2 files changed, 30 insertions, 0 deletions
diff --git a/strata/icu-common.morph b/strata/icu-common.morph
new file mode 100644
index 00000000..51a44361
--- /dev/null
+++ b/strata/icu-common.morph
@@ -0,0 +1,10 @@
+name: icu-common
+kind: stratum
+build-depends:
+- morph: strata/coreutils-common.morph
+chunks:
+- name: icu
+ morph: strata/icu-common/icu.morph
+ repo: upstream:icu
+ ref: ba023548a3bff7277cbea4acade3042ce9d8949e
+ unpetrify-ref: baserock/morph
diff --git a/strata/icu-common/icu.morph b/strata/icu-common/icu.morph
new file mode 100644
index 00000000..42a7bc58
--- /dev/null
+++ b/strata/icu-common/icu.morph
@@ -0,0 +1,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