-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
39 lines (32 loc) · 1.38 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<project name="rocketchat" basedir=".">
<dirname property="app.basedir" file="${ant.file.rocketchat}"/>
<property name="build.properties" value="${app.basedir}/build.properties"/>
<property file="${build.properties}"/>
<!-- Load Portapps core build -->
<property name="core.basedir" location="${app.basedir}\${core.dir}"/>
<fail unless="core.basedir" message="Core directory '${core.basedir}' not found in ${core.basedir}"/>
<echo message="Core found in ${core.basedir}" level="debug"/>
<!-- Import build-app.xml -->
<import file="${core.basedir}\.build\build-app.xml"/>
<!-- Targets -->
<target name="release" depends="release.app" description="Release"/>
<target name="prepare" depends="load.lib.asar">
<echo message="Preparing release..."/>
<echo message="Extracting embedded ${atf.arch} archive"/>
<property name="extract.path2" value="${tmp.path}\extract2"/>
<if>
<equals arg1="${atf.arch}" arg2="win32"/>
<then>
<sevenzip-ax src="${extract.path}\$PLUGINSDIR\app-32.7z" dest="${extract.path2}"/>
</then>
<else>
<sevenzip-ax src="${extract.path}\$PLUGINSDIR\app-64.7z" dest="${extract.path2}"/>
</else>
</if>
<delete dir="${extract.path}"/>
<move todir="${extract.path}">
<fileset dir="${extract.path2}" defaultexcludes="no"/>
</move>
</target>
</project>