-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
36 lines (32 loc) · 934 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
36
<project name="Handbrake" default="all" basedir=".">
<target name="all" depends="clean,handbrake"/>
<target name="handbrake" depends="clean">
<zip destfile="build/handbrake.zip">
<fileset dir=".">
<exclude name="**/.svn" />
<exclude name="**/.git" />
<include name="tools/handbrake/*"/>
<include name="tools/atomicparsley/*"/>
<include name="tools/subler/*"/>
<include name="tools/eject/**"/>
<include name="lib/tools.rb" />
<include name="lib/hb_lib.rb" />
<include name="lib/taggers.rb"/>
<include name="lib/provider_lib.rb"/>
<include name="lib/commands.rb" />
<include name="lib/manicure.rb" />
<include name="tag_episode.rb" />
<include name="hb.rb" />
<include name="readme.txt" />
<include name="LICENSE.txt" />
</fileset>
</zip>
</target>
<target name="clean">
<delete>
<fileset dir=".">
<include name="build/**/*"/>
</fileset>
</delete>
</target>
</project>