-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.xml
37 lines (28 loc) · 928 Bytes
/
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
<project name="rexo" default="compile" basedir=".">
<description>pstotext (part of rexa.info project)</description>
<property name="dist.pstotext" value="dist-pstotext"/>
<target
name="dist"
description="create distribution file set">
<delete dir="${dist.pstotext}"/>
<mkdir dir="${dist.pstotext}"/>
<mkdir dir="${dist.pstotext}/bin"/>
<exec executable="bin/setup"/>
<copy todir="${dist.pstotext}/bin">
<fileset dir="bin">
<include name="idftype"/>
<include name="ligatures.txt"/>
<include name="pstotext"/>
<include name="sha2path.pl"/>
<include name="totext"/>
</fileset>
</copy>
<exec executable="chmod">
<arg value="755"/>
<arg value="${dist.pstotext}/bin/idftype"/>
<arg value="${dist.pstotext}/bin/pstotext"/>
<arg value="${dist.pstotext}/bin/sha2path.pl"/>
<arg value="${dist.pstotext}/bin/totext"/>
</exec>
</target>
</project>