diff options
author | Francisco Redondo Marchena <francisco.marchena@codethink.co.uk> | 2014-08-15 17:17:47 +0100 |
---|---|---|
committer | Francisco Redondo Marchena <francisco.marchena@codethink.co.uk> | 2014-08-15 17:17:47 +0100 |
commit | 55f24d7e91e7c906cf4e3a3ef7a4d95ff094a7a8 (patch) | |
tree | acb218bf6ef68a037da3039b4aacef2a66f346c2 | |
parent | 79be8352ced650e98ab0afe89e91cffee4f6a04a (diff) | |
download | qtbase-55f24d7e91e7c906cf4e3a3ef7a4d95ff094a7a8.tar.gz |
Fix and convert qtbase.morph to YAMLbaserock/morph
-rw-r--r-- | qtbase.morph | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/qtbase.morph b/qtbase.morph index edbaf9d2e3..1427c4c243 100644 --- a/qtbase.morph +++ b/qtbase.morph @@ -1,20 +1,15 @@ -{ - "name": "qtbase", - "kind": "chunk", - "configure-commands": [ - "./configure -v -prefix /usr -opensource -confirm-license" - ], - "build-commands": [ - "make", - "touch /qtbase.build/src/corelib/corelib.pro", - "./bin/qmake -set QDOC /qtbase.build/bin/qdoc", - "make html_docs", - "./bin/qmake -unset QDOC" - ], - "install-commands": [ - "make install INSTALL_ROOT=$DESTDIR", - "./bin/qmake -set QDOC /qtbase.build/bin/qdoc", - "make install_html_docs INSTALL_ROOT=$DESTDIR", - "./bin/qmake -unset QDOC" - ] -} +name: qtbase +kind: chunk +configure-commands: +- ./configure -v -prefix /usr -opensource -confirm-license +build-commands: +- make +- touch /qtbase.build/src/corelib/corelib.pro +- ./bin/qmake -set QDOC /qtbase.build/bin/qdoc +- make html_docs +- ./bin/qmake -unset QDOC +install-commands: +- make install INSTALL_ROOT="$DESTDIR" +- ./bin/qmake -set QDOC /qtbase.build/bin/qdoc +- make install_html_docs INSTALL_ROOT="$DESTDIR" +- ./bin/qmake -unset QDOC |