mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
eb5c19eec9
Changes from upstream : removed download choice based on architecture, this is always recompiled from source
17 lines
472 B
XML
17 lines
472 B
XML
<project name="SWT" default="jar" basedir=".">
|
|
<property name="src" location="."/>
|
|
<property name="build" location="build"/>
|
|
|
|
<target name="init">
|
|
<tstamp/>
|
|
<mkdir dir="${build}"/>
|
|
</target>
|
|
|
|
<target name="compile" depends="init" description="Compile the SWT toolset">
|
|
<javac srcdir="${src}" destdir="${build}" target="1.6" />
|
|
</target>
|
|
|
|
<target name="jar">
|
|
<jar destfile="swt.jar" basedir="${build}"/>
|
|
</target>
|
|
</project>
|