summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2013-08-01 12:32:48 +0000
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2013-08-02 21:57:08 +0000
commit52de99559e5b5bf09160e5a5a164d0ca5fede98c (patch)
tree30c0003568e056757be17c0f1c039d6d495cde97
parent0c66078858c452ccadf86509f1ea78d636651197 (diff)
downloadgtk+-baserock/xfce-build.tar.gz
update morph to yaml, and require loader cachebaserock/xfce-build
-rw-r--r--gtk+.morph23
1 files changed, 12 insertions, 11 deletions
diff --git a/gtk+.morph b/gtk+.morph
index 8db1d0716a..ab51392b51 100644
--- a/gtk+.morph
+++ b/gtk+.morph
@@ -1,11 +1,12 @@
-{
- "name": "gtk+",
- "kind": "chunk",
- "build-system": "autotools",
- "configure-commands": [
- "gdk-pixbuf-query-loaders --update-cache",
- "update-mime-database \"$PREFIX/share/mime\"",
- "NOCONFIGURE=1 ./autogen.sh",
- "./configure --prefix=\"$PREFIX\" \"$@\""
- ]
-}
+name: gtk+
+kind: chunk
+build-system: autotools
+configure-commands:
+- gdk-pixbuf-query-loaders > loader.cache
+#- update-mime-database "$PREFIX/share/mime"
+- NOCONFIGURE=1 ./autogen.sh
+- ./configure --prefix="$PREFIX"
+build-commands:
+- GDK_PIXBUF_MODULE_FILE="$(pwd)/loader.cache" make
+install-commands:
+- GDK_PIXBUF_MODULE_FILE="$(pwd)/loader.cache" make install DESTDIR="$DESTDIR"