Mercurial > cgi-bin > hgweb.cgi > JpegWasher
view build.xml @ 36:aa9ab6cbaa26
Duke has been banished from the dock.
author | David Barts <n5jrn@me.com> |
---|---|
date | Thu, 30 Apr 2020 23:38:24 -0700 |
parents | bcbc92ffe0d0 |
children | 4fdd2f7e2cec |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <project name="JpegWasher" default="help" basedir="." xmlns:contrib="antlib:net.sf.antcontrib" xmlns:jarbundler="antlib:com.ultramixer.jarbundler" xmlns:launch4j="antlib:net.sf.launch4j.ant" xmlns:mod="antlib:de.masters_of_disaster.ant.tasks"> <!-- import all environment variables as env.* --> <property environment="env"/> <!-- ensure required environment variables are set --> <macrodef name="env-require"> <attribute name="name"/> <sequential> <fail message="Environment variable @{name} not set!"> <condition> <not><isset property="env.@{name}"/></not> </condition> </fail> </sequential> </macrodef> <env-require name="JRE_HOME"/> <env-require name="KOTLIN_HOME"/> <!-- cribbed from https://stackoverflow.com/questions/7129672/uppercase-lowercase-capitalize-an-ant-property --> <scriptdef language="javascript" name="toLowerCase"> <attribute name="value" /> <attribute name="target" /> <![CDATA[ "use strict"; project.setProperty( attributes.get( "target" ), attributes.get( "value" ).toLowerCase() ); ]]> </scriptdef> <scriptdef language="javascript" name="du"> <attribute name="path" /> <attribute name="target" /> <![CDATA[ "use strict"; var File = Java.type('java.io.File'); function du(fp) { if (fp.isDirectory()) { var files = fp.listFiles(); if (!files) return 0; var total = 0; for(var i=0; i<files.length; i++) total += du(files[i]); return total; } else { return fp.length(); } } var path = new File(attributes.get("path")); project.setProperty(attributes.get("target"), Math.round(du(path) / 1024) + ""); ]]> </scriptdef> <!-- Define the properties used by the build --> <property name="app.name" value="${ant.project.name}"/> <property name="app.version" value="1.03"/> <property name="app.entry" value="name.blackcap.exifwasher.MainKt"/> <toLowerCase target="lc.app.name" value="${app.name}"/> <property name="jar.name" value="${basedir}/${lc.app.name}.jar"/> <property name="work.jar" value="${basedir}/work.jar"/> <property name="lib.home" value="${basedir}/lib"/> <property name="src.home" value="${basedir}/src"/> <property name="dist.home" value="${basedir}/dist"/> <property name="pf.home" value="${basedir}/package-files"/> <property name="nat.dir" value="${src.home}/name/blackcap/exifwasher/exiv2"/> <property name="bin.dir" value="${src.home}/name/blackcap/exifwasher/binaries"/> <!-- load the ant-contrib tasks --> <taskdef resource="net/sf/antcontrib/antlib.xml" uri="antlib:net.sf.antcontrib"> <classpath> <fileset dir="${lib.home}/ant-contrib" includes="*.jar"/> </classpath> </taskdef> <!-- load jarbundler (Mac app bundler) tasks --> <contrib:if> <os family="mac"/> <contrib:then> <taskdef name="create" classname="com.ultramixer.jarbundler.JarBundler" classpath="${lib.home}/jarbundler-core-3.3.0.jar" uri="antlib:com.ultramixer.jarbundler"> </taskdef> </contrib:then> </contrib:if> <!-- load launch4j (Windows app bundler) tasks --> <contrib:if> <os family="windows"/> <contrib:then> <taskdef name="create" classname="net.sf.launch4j.ant.Launch4jTask" uri="antlib:net.sf.launch4j.ant"> <classpath> <fileset dir="${lib.home}/launch4j" includes="*.jar"/> </classpath> </taskdef> </contrib:then> </contrib:if> <!-- load mod (Gnome app bundler) tasks --> <contrib:if> <os family="unix"/> <contrib:then> <taskdef name="calculatesize" classname="de.masters_of_disaster.ant.tasks.calculatesize.CalculateSize" uri="antlib:de.masters_of_disaster.ant.tasks"> <classpath> <fileset dir="${lib.home}/mod" includes="*.jar"/> </classpath> </taskdef> <taskdef name="deb" classname="de.masters_of_disaster.ant.tasks.deb.Deb" uri="antlib:de.masters_of_disaster.ant.tasks"> <classpath> <fileset dir="${lib.home}/mod" includes="*.jar"/> </classpath> </taskdef> </contrib:then> </contrib:if> <!-- define the kotlin task --> <property name="kotlin.lib" value="${env.KOTLIN_HOME}/lib"/> <typedef resource="org/jetbrains/kotlin/ant/antlib.xml" classpath="${kotlin.lib}/kotlin-ant.jar"/> <!-- help message --> <target name="help"> <echo>You can use the following targets:</echo> <echo> </echo> <echo> help : (default) Prints this message </echo> <echo> all : Cleans, compiles, and stages application</echo> <echo> clean : Deletes work directories</echo> <echo> compile : Compiles servlets into class files</echo> <echo> jar : Make JAR file.</echo> <echo> </echo> <echo>For example, to clean, compile, and package all at once, run:</echo> <echo>prompt> ant all </echo> </target> <!-- Determine OS type --> <condition property="os.type" value="mac"> <os family="mac"/> </condition> <condition property="os.type" value="windows"> <os family="windows"/> </condition> <condition property="os.type" value="linux"> <!-- notes: 1) XXX not all non-mac UNIX systems are Linux, but this assumes so; 2) this clause MUST appear AFTER the "mac" one --> <os family="unix"/> </condition> <property name="os.type" value="unknown"/> <!-- Define the CLASSPATH --> <target name="classpath"> <path id="compile.classpath"> <pathelement location="${src.home}"/> </path> </target> <!-- make needed directories --> <target name="mkdirs"> <mkdir dir="${bin.dir}/${os.type}"/> <mkdir dir="${dist.home}"/> </target> <!-- remove old cruft --> <target name="clean"> <delete includeEmptyDirs="true"> <fileset dir="${dist.home}" includes="**/*"/> <fileset dir="${bin.dir}"/> </delete> </target> <!-- rename files containing OS-dependant code --> <target name="osdep"> <exec executable="${env.JRE_HOME}/bin/java"> <arg value="-jar"/> <arg value="../Osdep/osdep.jar"/> <arg value="${src.home}"/> </exec> </target> <!-- do everything but install --> <target name="all" depends="jar" description="Clean work dirs, compile, make JAR."/> <!-- compile *.kt to *.class --> <target name="compile" depends="mkdirs,osdep,classpath" description="Compile Java sources to ${work.home}"> <kotlinc src="${src.home}" output="${work.jar}" classpathref="compile.classpath"> <compilerarg line="-jvm-target 1.8"/> </kotlinc> </target> <!-- make .jar file --> <target name="jar" depends="compile" description="Create JAR file."> <jar destfile="${jar.name}"> <manifest> <attribute name="Main-Class" value="${app.entry}"/> </manifest> <zipgroupfileset dir="${lib.home}" includes="*.jar"/> <zipfileset src="${work.jar}"/> <zipfileset dir="${src.home}" includes="**/*.properties,**/*.dll,**/*.so,**/*.dylib"/> <zipfileset file="${pf.home}/linux/icon_48x48.png" fullpath="name/blackcap/exifwasher/icon_48x48.png"/> </jar> </target> <!-- the packaging logic here is cribbed from what jEdit does --> <target name="macapp" depends="jar" description="Create MacOS app bundle."> <!-- not finished --> </target> <target name="winapp" depends="jar" description="Create app bundle."> <!-- not finished --> </target> <target name="deb" depends="jar" description="Create Debian package."> <sequential> <mkdir dir="${dist.home}/data/usr/share/applications"/> <copy file="${pf.home}/linux/deb/jpegwasher.desktop" tofile="${dist.home}/data/usr/share/applications/jpegwasher.desktop"/> <mkdir dir="${dist.home}/data/usr/share/icons/hicolor/48x48/apps"/> <copy file="${pf.home}/linux/icon_48x48.png" tofile="${dist.home}/data/usr/share/icons/hicolor/48x48/apps/jpegwasher.png"/> <mkdir dir="${dist.home}/data/usr/share/jpegwasher"/> <copy file="${jar.name}" todir="${dist.home}/data/usr/share/jpegwasher"/> <mkdir dir="${dist.home}/data/usr/share/doc/jpegwasher"/> <copy todir="${dist.home}/data/usr/share/doc/jpegwasher"> <filelist dir="${basedir}" files="Readme.html,Readme.rst"/> <fileset file="${pf.home}/linux/deb/copyright"/> </copy> <gzip src="${pf.home}/linux/deb/changelog" destfile="${dist.home}/data/usr/share/doc/jpegwasher/changelog.gz"/> <mkdir dir="${dist.home}/data/usr/share/man/man1"/> <gzip src="${pf.home}/linux/jpegwasher.1" destfile="${dist.home}/data/usr/share/man/man1/jpegwasher.1.gz"/> <mkdir dir="${dist.home}/data/usr/bin"/> <copy todir="${dist.home}/data/usr/bin" encoding="UTF-8" overwrite="true"> <fileset file="${pf.home}/linux/jpegwasher"/> <filterset> <filter token="jar.filename" value="${lc.app.name}.jar"/> </filterset> </copy> <chmod file="${dist.home}/data/usr/bin/jpegwasher" perm="755"/> <du path="${dist.home}/data" target="deb.installed.size"/> <mkdir dir="${dist.home}/control"/> <copy todir="${dist.home}/control" encoding="UTF-8" overwrite="true"> <fileset file="${pf.home}/linux/deb/control"/> <filterset> <filter token="app.version" value="${app.version}"/> <filter token="deb.installed.size" value="${deb.installed.size}"/> </filterset> </copy> <copy todir="${dist.home}/control"> <filelist dir="${pf.home}/linux/deb" files="postinst,postrm"/> </copy> <chmod perm="755"> <filelist dir="${dist.home}/control" files="postinst,postrm"/> </chmod> <exec executable="${basedir}/make-debian-package"> <arg value="${dist.home}"/> <arg value="${lc.app.name}_${app.version}.deb"/> </exec> </sequential> </target> </project>