summaryrefslogtreecommitdiff
path: root/baserock/strata/webtools
diff options
context:
space:
mode:
Diffstat (limited to 'baserock/strata/webtools')
-rw-r--r--baserock/strata/webtools/icu.morph8
-rw-r--r--baserock/strata/webtools/nginx.morph14
2 files changed, 22 insertions, 0 deletions
diff --git a/baserock/strata/webtools/icu.morph b/baserock/strata/webtools/icu.morph
new file mode 100644
index 00000000..37dec07e
--- /dev/null
+++ b/baserock/strata/webtools/icu.morph
@@ -0,0 +1,8 @@
+name: icu
+kind: chunk
+configure-commands:
+- cd source; ./runConfigureICU Linux --prefix=/usr
+build-commands:
+- cd source; unset TARGET ; make
+install-commands:
+- cd source; unset TARGET ; make DESTDIR="$DESTDIR" install
diff --git a/baserock/strata/webtools/nginx.morph b/baserock/strata/webtools/nginx.morph
new file mode 100644
index 00000000..6f7f04ae
--- /dev/null
+++ b/baserock/strata/webtools/nginx.morph
@@ -0,0 +1,14 @@
+name: nginx
+kind: chunk
+configure-commands:
+- |
+ ./configure --prefix=$PREFIX \
+ --conf-path=/etc/nginx/nginx.conf \
+ --pid-path=/etc/nginx/nginx.pid \
+ --error-log-path=/var/log/nginx/error.log \
+ --http-log-path=/var/log/nginx/access.log \
+ --with-http_ssl_module
+build-commands:
+- make
+install-commands:
+- make install