summaryrefslogtreecommitdiff
path: root/strata/core
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-02-04 10:08:53 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-02-12 11:35:23 +0000
commitfd64ef32214ceb05f89c51073e3a4673fb0c32aa (patch)
tree0c19b870da3d62f526c8c9edd73ea753647730a5 /strata/core
parent9b235754effaea3b32cc34b0f74496c462fdb124 (diff)
downloaddefinitions-fd64ef32214ceb05f89c51073e3a4673fb0c32aa.tar.gz
Update to libexpat 2.0.1
Also change the build system to cmake, as the autotools based one doesn't seem to work with the current automake version.
Diffstat (limited to 'strata/core')
-rw-r--r--strata/core/libexpat.morph7
1 files changed, 3 insertions, 4 deletions
diff --git a/strata/core/libexpat.morph b/strata/core/libexpat.morph
index 1e0fe696..b36a67aa 100644
--- a/strata/core/libexpat.morph
+++ b/strata/core/libexpat.morph
@@ -1,9 +1,8 @@
name: libexpat
kind: chunk
configure-commands:
-- autoreconf -i
-- ./configure --prefix="${PREFIX-/usr}"
+- mkdir o && cd o && cmake -DCMAKE_INSTALL_PREFIX=/usr ..
build-commands:
-- make
+- cd o && make
install-commands:
-- make DESTDIR="$DESTDIR" install
+- cd o && make DESTDIR="$DESTDIR" install