Changed Linux to make rpm package - are there other options?
Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/f40c8fef Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/f40c8fef Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/f40c8fef Branch: refs/heads/master Commit: f40c8fef4229a09b7561ec9f4b5ad9677554b86c Parents: 2a93d88 Author: Justin Mclean <[email protected]> Authored: Sat Jun 15 20:32:30 2013 +1000 Committer: Justin Mclean <[email protected]> Committed: Sat Jun 15 20:32:30 2013 +1000 ---------------------------------------------------------------------- installer/build.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/f40c8fef/installer/build.xml ---------------------------------------------------------------------- diff --git a/installer/build.xml b/installer/build.xml index 0d71563..ca63470 100644 --- a/installer/build.xml +++ b/installer/build.xml @@ -125,7 +125,12 @@ <condition property="extension" value="exe"> <os family="windows" /> </condition> - <property name="extension" value="dmg"/> + <condition property="extension" value="dmg"> + <os family="mac" /> + </condition> + <condition property="extension" value="rpm"> + <os family="unix" /> + </condition> <target name="build" depends="init,certificate,compile,packagenative,cleanup" description="Compiles and packages application"/>
