From: harry.heo Date: Thu, 14 Apr 2016 08:11:04 +0000 (+0900) Subject: Modify dibs-build script for Mac X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05ccb8676f3a33f3249dd2571d51dce9e79596ec;p=sdk%2Fbuild%2Fpde-build.git Modify dibs-build script for Mac - As upgrading Eclipse Mars(4.5), modify some build script for Mac - Change build host os to macos-64 for macos package (pkginfo.manifest) - Add build.macos file Change-Id: I5c60f40fdd83b41069e506f8e2f790d06617e78d Signed-off-by: harry.heo --- diff --git a/package/build.macos b/package/build.macos new file mode 100755 index 0000000..47c201a --- /dev/null +++ b/package/build.macos @@ -0,0 +1,27 @@ +#!/bin/bash -xe + +# clean +clean() +{ + echo "=========================================CLEAN============================================" + rm -rf ${SRCDIR}/package/pde-build.package.${TARGET_OS} + rm -rf ${SRCDIR}/pde-build_*_${TARGET_OS}.zip +} + +# build +build() +{ + echo "=========================================BUILD============================================" +} + +# install +install() +{ + echo "=========================================INSTALL============================================" + INSTALL_DIR=${SRCDIR}/package/pde-build.package.${TARGET_OS}/data + + mkdir -p ${INSTALL_DIR} + cp -rf ${SRCDIR}/script ${INSTALL_DIR}/pde-build +} + +$1 diff --git a/package/changelog b/package/changelog index 1daf9a3..4ac8607 100644 --- a/package/changelog +++ b/package/changelog @@ -1,3 +1,6 @@ +* 2.1.9 +- Modify ant-build.xml,ant-install.xml for Mac as upgrading Eclipse Mars. +== hyeongseok.heo 2016-04-14 * 2.1.8 - Added ant script for package build. == hyocheol.ahn 2015-09-05 diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index 96d3cc5..febc839 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,6 +1,6 @@ -Version:2.1.8 +Version:2.1.9 Source:pde-build -Maintainer:kangho kim , yoonki park , hyunsik non , taeyoung son , gune Kim , ho namkoong , hyeongseok heo , gyeongseok seo , jihoon song , changhyun lee , bonyong lee +Maintainer:yoonki park , hyeongseok heo Package:pde-build OS:ubuntu-32,ubuntu-64,windows-32,windows-64,macos-64 diff --git a/script/ant-build.xml b/script/ant-build.xml index 4f6ec66..3facb08 100644 --- a/script/ant-build.xml +++ b/script/ant-build.xml @@ -16,7 +16,7 @@ - + @@ -87,7 +87,9 @@ - + + + diff --git a/script/ant-clean.xml b/script/ant-clean.xml index b9b37d7..30bd60f 100644 --- a/script/ant-clean.xml +++ b/script/ant-clean.xml @@ -25,7 +25,7 @@ - remove leggacy directory and files. =====================================================================--> - IDE ANT - Clena : ${SRCDIR} : ${SRCDIR}/build_result : ${SRCDIR}/package/${package.name}.package.${BUILD_TARGET_OS} + IDE ANT - Clean : ${SRCDIR} : ${SRCDIR}/build_result : ${SRCDIR}/package/${package.name}.package.${BUILD_TARGET_OS} diff --git a/script/ant-install.xml b/script/ant-install.xml index cd5e1a4..87ce113 100644 --- a/script/ant-install.xml +++ b/script/ant-install.xml @@ -78,6 +78,8 @@ + +