-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
31 lines (28 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Portable_XH" default="default">
<target name="build">
<exec executable="git" checkreturn="true">
<arg line="archive -o export.zip HEAD"/>
</exec>
<unzip file="export.zip" todir="export"/>
<delete file="export.zip"/>
<exec executable="pandoc" dir="export">
<arg line="README.md -f markdown -t html -s -o README.htm"/>
</exec>
<exec executable="pandoc" dir="export">
<arg line="LIESMICH.md -f markdown -t html -s -o LIESMICH.htm"/>
</exec>
<move todir="dist">
<fileset dir="export">
<exclude name=".github/**"/>
<exclude name=".phive/**"/>
<exclude name="portable_xh_helper/**"/>
<exclude name="*.md"/>
<exclude name="build.xml"/>
</fileset>
</move>
<delete dir="export"/>
<zip destfile="Portable_XH-3.2-dev.zip" basedir="dist" prefix="Portable_XH/"/>
<delete dir="dist"/>
</target>
</project>