forked from andymeneely/Gimp-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
31 lines (24 loc) · 889 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Gimp Scripts" default="default">
<description>
Buildfile for publishing my personal Gimp scripts
</description>
<property name="pub.dir" value="${user.home}/.gimp-2.6/scripts" />
<property file="build.properties" />
<property name="doc.dir" value="${basedir}/scripts" />
<!-- =================================
target: default
================================= -->
<target name="default" depends="publish" description="">
</target>
<!-- - - - - - - - - - - - - - - - - -
target: Rebuild the wiki doc
- - - - - - - - - - - - - - - - - -->
<target name="publish">
<copy todir="${pub.dir}">
<fileset dir="${doc.dir}">
<include name="*.scm" />
</fileset>
</copy>
</target>
</project>