filebot/build.xml

855 lines
32 KiB
XML
Raw Normal View History

2014-08-01 07:47:39 -04:00
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2018-06-14 02:56:52 -04:00
<project name="filebot" default="jar" xmlns:if="ant:if" xmlns:unless="ant:unless" xmlns:ivy="antlib:org.apache.ivy.ant">
2014-08-01 07:47:39 -04:00
<!-- define source dirs -->
<property name="dir.source" location="${basedir}/source" />
<property name="dir.build" location="${basedir}/build" />
<property name="dir.dist" location="${basedir}/dist" />
<property name="dir.lib" location="${basedir}/lib" />
<property name="dir.website" location="${basedir}/website" />
<property name="dir.installer" location="${basedir}/installer" />
2018-06-26 12:48:56 -04:00
<property name="dir.cache" location="${basedir}/cache" />
2014-08-01 07:47:39 -04:00
2016-11-04 16:19:30 -04:00
<!-- import property files -->
<property file="${basedir}/profile.properties" />
2018-01-19 15:55:19 -05:00
<property file="${basedir}/app.properties" />
2016-11-04 16:19:30 -04:00
2018-06-26 12:48:56 -04:00
<!-- define release files -->
2016-11-04 16:19:30 -04:00
<property name="release" value="${application.name}_${application.version}" />
2018-06-26 12:48:56 -04:00
<property name="dir.release.index" location="${basedir}/release" />
<property name="dir.release" location="${dir.release.index}/${release}" />
2014-08-01 07:47:39 -04:00
2016-11-04 16:19:30 -04:00
<!-- timestamp variables -->
<tstamp prefix="tstamp">
<format property="date" pattern="yyyy-MM-dd" />
<format property="year" pattern="yyyy" />
</tstamp>
2016-09-17 02:53:14 -04:00
2014-08-01 07:47:39 -04:00
<macrodef name="copy-replace" description="Copy text files and replace ant variables">
2016-11-04 10:39:19 -04:00
<attribute name="todir" />
<element name="filesets" implicit="yes" />
<sequential>
2016-11-04 16:19:30 -04:00
<copy todir="@{todir}" encoding="utf-8" overwrite="yes" verbose="yes">
2016-11-04 10:39:19 -04:00
<filesets />
<filterset begintoken="@{" endtoken="}">
<propertyset>
<propertyref builtin="all" />
</propertyset>
</filterset>
</copy>
</sequential>
</macrodef>
<macrodef name="release-sign" description="Sign files with GnuPG">
<element name="filesets" implicit="yes" />
<sequential>
2018-06-22 11:28:16 -04:00
<apply executable="gpg" verbose="yes" failonerror="yes">
2018-06-21 15:05:21 -04:00
<arg line="--verbose --batch --yes --local-user ${package.maintainer}" />
<arg line="--armor --detach-sign" />
<srcfile />
<filesets />
</apply>
</sequential>
</macrodef>
<macrodef name="release-deploy" description="Upload files">
2018-06-22 10:44:23 -04:00
<attribute name="dir" />
2017-04-16 13:08:09 -04:00
<attribute name="todir" />
2018-06-22 11:30:51 -04:00
<element name="includes" implicit="yes" optional="yes" />
2017-04-16 13:08:09 -04:00
<sequential>
2018-06-26 12:48:56 -04:00
<scp todir="@{todir}" trust="yes" verbose="true" sftp="true" keyfile="${scp.keyfile}">
2018-06-22 10:44:23 -04:00
<fileset dir="@{dir}">
<includes />
<modified>
<param name="cache.cachefile" value="${dir.cache}/scp.cache" />
</modified>
</fileset>
2017-04-16 13:08:09 -04:00
</scp>
</sequential>
</macrodef>
2018-06-22 10:44:23 -04:00
<patternset id="pattern.jre">
<!-- exclude Windows browser plugin -->
<exclude name="**/dtplugin/**" />
<exclude name="**/plugin2/**" />
<!-- exclude Mac browser plugin -->
<exclude name="**/deploy/**" />
<exclude name="**/nibs/**" />
<exclude name="**/shortcuts/**" />
<!-- libjfxwebkit.dylib has many dependencies to deprecated librararies that cause issues with MAS review -->
<exclude name="**/libjfxwebkit.dylib" />
</patternset>
<macrodef name="get-windows-jre" description="Fetch and unpack JRE bundle (64-bit Windows)">
<attribute name="dest" />
<sequential>
<exec executable="powershell" dir="${dir.cache}" failonerror="yes">
<arg line="get-java" />
</exec>
<untar src="${dir.cache}/jre-${jre.version}_windows-x64_bin.tar.gz" dest="@{dest}" compression="gzip">
<patternset refid="pattern.jre" />
<cutdirsmapper dirs="1" />
</untar>
</sequential>
</macrodef>
<macrodef name="get-macos-jre" description="Fetch and unpack JRE bundle (64-bit Mac)">
<attribute name="dest" />
<sequential>
<exec executable="get-java.sh" dir="${dir.cache}" failonerror="yes">
<arg line="get jre x86_64 Darwin" />
</exec>
<untar src="${dir.cache}/jre-${jre.version}_osx-x64_bin.tar.gz" dest="@{dest}" compression="gzip">
<patternset refid="pattern.jre" />
<cutdirsmapper dirs="1" />
</untar>
</sequential>
</macrodef>
<macrodef name="get-linux-jre" description="Fetch and unpack JRE bundle (64-bit Linux)">
<attribute name="dest" />
<sequential>
<exec executable="get-java.sh" dir="${dir.cache}" failonerror="yes">
<arg line="get jre x86_64 Linux" />
</exec>
<untar src="${dir.cache}/jre-${jre.version}_linux-x64_bin.tar.gz" dest="@{dest}" compression="gzip">
<patternset refid="pattern.jre" />
<cutdirsmapper dirs="1" />
</untar>
</sequential>
</macrodef>
<macrodef name="create-app-bundle" description="Create macOS app bundle folder structure">
<attribute name="dir" />
<attribute name="deployment" />
<attribute name="runtime" />
<attribute name="license" />
<attribute name="identifier" />
<element name="options" implicit="yes" optional="yes" />
<sequential>
<get-macos-jre dest="@{dir}" if:true="@{runtime}" />
<bundleapp jvmrequired="${jvm.version}" minimumsystemversion="${mac.version}" outputdirectory="@{dir}" executablename="${package.name}.launcher" name="${application.name}" displayname="${application.name}.launcher" version="${revision}" shortversion="${application.version}" identifier="@{identifier}" mainclassname="${main.class}" icon="${dir.installer}/icons/${package.name}.icns" copyright="${tstamp.year} ${package.company}" applicationcategory="${mac.application.category}" highresolutioncapable="true" supportsautomaticgraphicsswitching="true">
<arch name="x86_64" />
2018-07-21 12:27:53 -04:00
<runtime dir="@{dir}/jre-${jre.version}.jre/Contents/Home" if:true="@{runtime}">
<include name="**/*" />
</runtime>
<classpath dir="${dir.dist}/lib" />
<librarypath dir="${dir.lib}/native/mac-x86_64" />
<!-- include command-line tools -->
2018-06-23 15:03:53 -04:00
<librarypath dir="@{dir}">
<include name="*.sh" />
</librarypath>
<bundledocument role="viewer" handlerRank="none" contentTypes="public.movie" name="Video file" />
<bundledocument role="viewer" handlerRank="none" contentTypes="public.audio" name="Audio file" />
<bundledocument role="viewer" handlerRank="none" contentTypes="public.folder" name="Media folder" />
<option value="-Dunixfs=false" />
<option value="-DuseExtendedFileAttributes=true" />
<option value="-DuseCreationDate=false" />
<option value="-Djava.net.useSystemProxies=true" />
2018-06-23 14:53:34 -04:00
<option value="-Djna.nosys=true" />
<option value="-Djna.nounpack=true" />
<option value="-Djna.boot.library.name=jnidispatch" />
<option value="-Djna.boot.library.path=$APP_ROOT/Contents/MacOS" />
<option value="-Djna.library.path=$APP_ROOT/Contents/MacOS" />
<option value="-Djava.library.path=$APP_ROOT/Contents/MacOS" />
<option value="-Dnet.filebot.AcoustID.fpcalc=$APP_ROOT/Contents/MacOS/fpcalc" />
2018-06-23 14:53:34 -04:00
<option value="-Dnet.filebot.UserFiles.fileChooser=COCOA" />
<option value="-Dapple.awt.application.name=${application.name}" />
2018-06-23 14:53:34 -04:00
<option value="-Dapple.laf.useScreenMenuBar=true" />
<option value="-Dfile.encoding=UTF-8" />
2018-06-23 14:53:34 -04:00
<!-- libjfxwebkit.dylib cannot be deployed on the MAS due to deprecated dependencies -->
<option value="-Dapplication.help=ask" />
<option value="-Dapplication.deployment=@{deployment}" />
<!-- associate with *.psm files -->
<bundledocument extensions="${license.extension}" icon="${dir.installer}/icons/filebot.icns" name="${license.description}" role="viewer" handlerRank="owner" contentTypes="net.filebot.license" if:true="@{license}" />
<typedeclaration extensions="${license.extension}" icon="${dir.installer}/icons/filebot.icns" description="${license.description}" conformsTo="public.plain-text" identifier="net.filebot.license" mimeTypes="${license.mimetype}" if:true="@{license}" />
<!-- include custom macro options -->
<options />
</bundleapp>
<!-- fix permissions -->
<chmod perm="+x" verbose="yes">
<fileset dir="${dir.staging}">
<include name="*.app/**/MacOS/filebot.*" />
<include name="*.app/**/MacOS/fpcalc" />
<include name="*.app/**/lib/jspawnhelper" />
<include name="*.app/**/bin/*" />
</fileset>
</chmod>
</sequential>
</macrodef>
<target name="jar" depends="revision">
2018-07-11 10:35:33 -04:00
<!-- static resources -->
<jar destfile="${dir.dist}/lib/${package.name}-resources.jar" index="yes" indexMetaInf="yes" compress="no">
<fileset dir="${dir.source}" includes="**/*.png" />
</jar>
<!-- select jar dependencies -->
<fileset id="jar.classpath" dir="${dir.lib}" includesfile="${dir.lib}/jar.includes" />
<!-- rebuild each dependency jar with zero compression and remove signatures -->
2018-06-27 12:11:20 -04:00
<groovy src="${dir.lib}/jar.groovy" />
2018-06-27 12:07:32 -04:00
<path id="jar.classpath">
<fileset dir="${dir.dist}/lib">
<include name="*.jar" />
</fileset>
</path>
<manifestclasspath property="jar.classpath" jarfile="${dir.dist}/lib/${package.name}.jar">
<classpath refid="jar.classpath" />
</manifestclasspath>
2018-06-22 10:44:23 -04:00
<!-- compile -->
2018-06-27 12:07:32 -04:00
<javac srcdir="${dir.source}" destdir="${dir.build}" release="${jvm.version}" encoding="utf-8" debug="yes" includeAntRuntime="no">
<classpath refid="jar.classpath" />
2018-06-22 10:44:23 -04:00
</javac>
<!-- copy resources -->
2018-07-11 10:35:33 -04:00
<copy todir="${dir.build}" includeemptydirs="no">
2018-06-22 10:44:23 -04:00
<fileset dir="${dir.source}">
<exclude name="**/*.java" />
2018-07-11 10:35:33 -04:00
<exclude name="**/*.png" />
2018-06-22 10:44:23 -04:00
<exclude name="**/*.properties" />
</fileset>
</copy>
2018-06-27 12:07:32 -04:00
<!-- copy property files -->
<copy-replace todir="${dir.build}">
<fileset dir="${dir.source}" includes="**/*.properties" />
</copy-replace>
2018-06-22 10:44:23 -04:00
2018-06-27 12:07:32 -04:00
<jar destfile="${dir.dist}/lib/${package.name}.jar" index="yes" indexMetaInf="yes" compress="no">
<fileset dir="${dir.build}" />
2014-08-01 07:47:39 -04:00
<manifest>
<attribute name="Main-Class" value="${main.class}" />
<attribute name="Class-Path" value="${jar.classpath}" />
2016-04-21 07:57:01 -04:00
<attribute name="Build-Date" value="${tstamp.date}" />
<attribute name="Build-Revision" value="${revision}" />
2014-08-01 07:47:39 -04:00
</manifest>
2018-06-27 12:07:32 -04:00
<indexjars refid="jar.classpath" />
2014-08-01 07:47:39 -04:00
</jar>
</target>
<target name="appx" depends="revision" description="Build Windows 10 package">
<property name="dir.staging" location="${dir.dist}/appx" />
<copy todir="${dir.staging}">
<fileset dir="${dir.installer}/msi" includes="filebot.exe, filebot.launcher.exe" />
</copy>
<copy todir="${dir.staging}/lib">
<fileset dir="${dir.lib}/native/win32-x64" />
</copy>
<copy todir="${dir.staging}/jar">
<fileset dir="${dir.dist}/lib" includes="*.jar" />
</copy>
<copy todir="${dir.staging}">
<fileset dir="${dir.installer}/appx" includes="**/*.png" />
</copy>
<!-- copy files and resolve ant variables -->
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/appx" includes="*.xml, *.ini" excludes="*.l4j.xml" />
</copy-replace>
<!-- fetch latest JRE -->
<get-windows-jre dest="${dir.staging}/jre" />
<!-- Workaround for VS2013 / CoInitialize hack (see http://mail.openjdk.java.net/pipermail/swing-dev/2018-February/008323.html) -->
<delete verbose="yes">
<fileset dir="${dir.staging}/jre" includes="**/*120*.dll" />
</delete>
<!-- package APPX -->
<exec executable="makepri" dir="${dir.staging}" failonerror="yes">
<arg line="createconfig /o /pv 10.0.0 /cf priconfig.xml /dq en-US" />
</exec>
<exec executable="makepri" dir="${dir.staging}" failonerror="yes">
<arg line="new /o /pr . /cf priconfig.xml /in ${microsoft.application.name}" />
</exec>
<exec executable="makeappx" dir="${dir.dist}" failonerror="yes">
<arg line="pack /v /o /d ${dir.staging} /p ${release}_r${revision}_x64.appx" />
</exec>
</target>
<target name="msi" depends="revision" description="Build Windows Installer package">
<property name="dir.staging" location="${dir.dist}/msi/x64" />
<!-- 1. prepare application files for heat harvest -->
<get-windows-jre dest="${dir.staging}/base/jre" />
<copy todir="${dir.staging}/base/jar">
<fileset dir="${dir.dist}/lib" includes="*.jar" />
</copy>
<copy todir="${dir.staging}/base/lib">
<fileset dir="${dir.lib}/native/win32-x64" />
</copy>
<exec executable="heat" dir="${dir.staging}" failonerror="true">
<arg line="dir base -v -srd -gg -dr ApplicationBase -cg ApplicationBase -template fragment -sreg -sfrag -scom -out base.wxs" />
</exec>
<exec executable="candle" dir="${dir.staging}" failonerror="true">
<arg line="base.wxs -out base.wixobj" />
</exec>
<!-- 2. prepare installer files and application stub for candle light -->
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/msi" includes="*.wix, *.ini" />
</copy-replace>
<exec executable="candle" dir="${dir.staging}" failonerror="true">
<arg line="filebot.wix -out filebot.wixobj" />
</exec>
<!-- 3. compile MSI package (use -b to add additional resource folders) -->
<exec executable="light" dir="${dir.staging}" failonerror="true">
<arg line="filebot.wixobj base.wixobj -b base -b ${dir.installer}/msi -sval -ext WixUIExtension -out ${dir.dist}/${release}_x64.msi" />
</exec>
</target>
<target name="zip" depends="revision" description="Build Windows Portable ZIP package">
<property name="dir.staging" location="${dir.dist}/zip" />
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/zip" includes="*.ini" />
</copy-replace>
<zip destfile="${dir.dist}/${release}-portable.zip" encoding="utf-8">
<zipfileset dir="${dir.installer}/zip" includes="*.exe" />
<zipfileset dir="${dir.staging}" includes="*.ini" />
<zipfileset prefix="jar" dir="${dir.dist}/lib" />
<zipfileset prefix="lib" dir="${dir.lib}/native/win32-x64" />
</zip>
</target>
2018-07-01 12:36:32 -04:00
<target name="mas" depends="revision" description="Build MAS package">
2018-06-15 05:05:42 -04:00
<property name="dir.staging" location="${dir.dist}/mas" />
2018-06-15 05:05:42 -04:00
<property name="path.app" location="${dir.staging}/${application.name}.app" />
<property name="path.pkg" location="${dir.staging}/${application.name}_${application.version}_r${revision}.pkg" />
<create-app-bundle dir="${dir.staging}" deployment="mas" runtime="yes" license="no" identifier="${package.identifier}">
2018-06-23 14:53:34 -04:00
<option value="-Dapplication.update=skip" />
2018-06-23 14:53:34 -04:00
<!-- MAS does not allow subtitle apps -->
<argument value="--mode" />
2018-06-23 14:53:34 -04:00
<argument value="Rename|Episodes|SFV|Filter|List" />
<!-- WORKING_DIR is sandbox data folder -->
<option value="-Dapplication.dir=Library/Application Support/User Data" />
<option value="-Dapplication.cache=Library/Caches/ehcache.disk.store" />
<option value="-Djava.io.tmpdir=Library/Caches/java.io.tmpdir" />
2018-06-23 14:53:34 -04:00
</create-app-bundle>
<!-- remove unused language resources -->
<delete verbose="yes" includeEmptyDirs="yes">
<fileset dir="${path.app}/Contents/Resources">
<include name="**.lproj/**" />
<exclude name="en.lproj/**" />
</fileset>
</delete>
2016-11-11 17:12:11 -05:00
2018-06-15 05:05:42 -04:00
<property name="path.app.jre" location="${path.app}/Contents/PlugIns/jre-${jre.version}.jre" />
<!-- MAS validation is a bit buggy and requires even libraries and frameworks to have a unique CFBundleIdentifier Collision -->
<replace file="${path.app.jre}/Contents/Info.plist" token="com.oracle.java.${jre.version}.jre" value="${application.identifier}.jre" encoding="UTF-8" summary="true" />
<!-- fix broken symlink -->
2018-07-21 12:27:53 -04:00
<copy file="${dir.staging}/jre-${jre.version}.jre/Contents/Home/lib/jli/libjli.dylib" tofile="${path.app.jre}/Contents/MacOS/libjli.dylib" overwrite="yes" verbose="yes" failonerror="yes" />
<!-- fix permissions (fpcalc and jspawnhelper be executable and signed with inherit entitlements) -->
<chmod perm="+x">
<fileset dir="${path.app}">
<include name="**/jspawnhelper" />
<include name="**/fpcalc" />
<include name="**/*.sh" />
</fileset>
</chmod>
2016-11-11 17:12:11 -05:00
<!-- JRE sign all jars, dylibs and executables -->
2018-06-23 14:53:34 -04:00
<property name="sign" value="--verbose --force --sign '3rd Party Mac Developer Application: ${package.company}'" />
2018-07-01 13:43:03 -04:00
<property name="entitlements" value="--entitlements '${dir.installer}/mas/FileBot.entitlements'" />
<property name="entitlements.inherit" value="--entitlements '${dir.installer}/mas/inherit.entitlements'" />
<!-- sign helper tools with inherit entitlements -->
<apply executable="codesign" parallel="yes" failonerror="yes">
<arg line="${sign} ${entitlements.inherit}" />
<fileset dir="${path.app}">
<include name="**/jspawnhelper" />
<include name="**/fpcalc" />
<include name="**/*.dylib" />
<include name="**/*.jar" />
<include name="**/*.sh" />
2016-11-11 17:12:11 -05:00
</fileset>
</apply>
<!-- sign frameworks -->
<exec executable="codesign" failonerror="yes">
<arg line="${sign} ${entitlements.inherit} '${path.app.jre}'" />
</exec>
<!-- sign app -->
<exec executable="codesign" failonerror="yes">
<arg line="${sign} ${entitlements} '${path.app}'" />
</exec>
<!-- verify signature -->
<exec executable="codesign" failonerror="yes">
<arg line="--verbose --deep --verify '${path.app}'" />
</exec>
<!-- build package -->
<exec executable="productbuild" failonerror="yes">
2018-06-23 14:53:34 -04:00
<arg line="--component '${path.app}' /Applications '${path.pkg}' --sign '3rd Party Mac Developer Installer: ${package.company}'" />
</exec>
2016-09-19 05:09:47 -04:00
<!-- store as release build-->
<copy todir="${dir.release}" file="${path.pkg}" verbose="yes" />
</target>
2018-07-01 12:36:32 -04:00
<target name="app" depends="revision" description="Build macOS app bundle">
<property name="dir.staging" location="${dir.dist}/app" />
2018-06-23 15:03:53 -04:00
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/app" />
</copy-replace>
<create-app-bundle dir="${dir.staging}" deployment="app" runtime="no" license="yes" identifier="${package.identifier}.APP" />
<tar destfile="${dir.dist}/${release}.app.tar.xz" compression="${tar.compression}" longfile="posix" encoding="utf-8">
<tarfileset dir="${dir.staging}">
<include name="*.app/**" />
<exclude name="*.app/**/MacOS/filebot.*" />
<exclude name="*.app/**/MacOS/fpcalc" />
<exclude name="*.app/**/lib/jspawnhelper" />
<exclude name="*.app/**/bin/*" />
</tarfileset>
<tarfileset dir="${dir.staging}" filemode="755">
<include name="*.app/**/MacOS/filebot.*" />
<include name="*.app/**/MacOS/fpcalc" />
<include name="*.app/**/lib/jspawnhelper" />
<include name="*.app/**/bin/*" />
</tarfileset>
</tar>
</target>
2018-06-15 08:30:02 -04:00
2018-07-01 12:36:32 -04:00
<target name="pkg" depends="revision" description="Build macOS installer package">
2018-06-15 08:30:02 -04:00
<property name="dir.staging" location="${dir.dist}/pkg" />
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/pkg" />
</copy-replace>
<create-app-bundle dir="${dir.staging}" deployment="pkg" runtime="yes" license="yes" identifier="${package.identifier}.PKG" />
2018-06-15 09:09:22 -04:00
<!-- fix permissions -->
<chmod perm="+x" verbose="yes">
<fileset dir="${dir.staging}/scripts" />
</chmod>
2018-06-15 08:30:02 -04:00
<exec executable="pkgbuild" dir="${dir.staging}" failonerror="yes">
2018-06-29 16:04:47 -04:00
<arg line="${package.name}.pkg --install-location /Applications --component ${dir.dist}/pkg/${application.name}.app --scripts scripts" />
2018-06-15 08:30:02 -04:00
</exec>
<exec executable="productbuild" dir="${dir.staging}" failonerror="yes">
2018-06-15 08:44:33 -04:00
<arg line="${dir.dist}/${release}.pkg --distribution distribution.xml --package-path . --sign 'Developer ID Installer: ${package.company}'" />
2018-06-15 08:30:02 -04:00
</exec>
</target>
2018-06-22 10:44:23 -04:00
<target name="deb" depends="revision" description="Build Debian package">
2018-06-20 12:30:46 -04:00
<property name="dir.staging" location="${dir.dist}/deb" />
2018-06-20 09:35:19 -04:00
<get-linux-jre dest="${dir.staging}/jre" />
2016-11-04 10:39:19 -04:00
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/deb" />
2016-11-04 10:39:19 -04:00
</copy-replace>
2018-06-20 12:30:46 -04:00
<jdeb destfile="${dir.dist}/${application.name}_${application.version}_amd64.deb" control="${dir.staging}/control" compression="${tar.compression}" verbose="true">
2018-06-20 09:35:19 -04:00
<tarfileset prefix="/usr/share/filebot/jre" dir="${dir.staging}/jre" includes="**/bin/**" filemode="755" />
2018-06-21 03:09:59 -04:00
<tarfileset prefix="/usr/share/filebot/jre" dir="${dir.staging}/jre" excludes="**/bin/**" />
2018-06-20 09:35:19 -04:00
2018-04-03 02:31:46 -04:00
<tarfileset prefix="/usr/share/filebot/bin" dir="${dir.staging}" includes="*.sh" filemode="755" />
2018-06-12 14:23:00 -04:00
<tarfileset prefix="/usr/share/filebot/jar" dir="${dir.dist}/lib" />
2018-06-20 12:30:46 -04:00
<tarfileset prefix="/usr/share/filebot/lib" dir="${dir.lib}/native/linux-amd64" includes="fpcalc" filemode="755" />
<tarfileset prefix="/usr/share/filebot/lib" dir="${dir.lib}/native/linux-amd64" includes="*.so" />
2018-06-12 14:23:00 -04:00
2017-02-14 10:48:04 -05:00
<tarfileset prefix="/usr/share/icons/hicolor/scalable/apps" dir="${dir.installer}/icons" includes="filebot.svg" />
2018-06-13 06:10:04 -04:00
<tarfileset prefix="/usr/share" dir="${dir.staging}/share" />
</jdeb>
2014-08-01 07:47:39 -04:00
</target>
2018-07-01 12:36:32 -04:00
<target name="snap" depends="revision" description="Build Ubuntu SNAP package">
<property name="dir.staging" location="${dir.dist}/snap" />
<property name="dir.base" location="${dir.staging}/base" />
2017-08-23 06:03:29 -04:00
<get-linux-jre dest="${dir.base}/jre" />
2017-03-12 05:21:11 -04:00
<!-- copy files and resolve ant variables -->
2017-08-23 06:03:29 -04:00
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/snap" />
2017-03-12 05:21:11 -04:00
</copy-replace>
2016-11-02 15:50:39 -04:00
<copy todir="${dir.base}/filebot/jar">
<fileset dir="${dir.dist}/lib" includes="*.jar" />
2016-11-04 16:19:30 -04:00
</copy>
<copy todir="${dir.base}/filebot/lib">
<fileset dir="${dir.lib}/native/linux-amd64" />
2016-11-04 16:19:30 -04:00
</copy>
<chmod perm="+x" verbose="yes">
<fileset dir="${dir.base}" includes="**/bin/**" />
</chmod>
<exec executable="snapcraft" dir="${dir.staging}" failonerror="yes">
<arg line="cleanbuild" />
2014-08-01 07:47:39 -04:00
</exec>
</target>
2018-07-01 12:36:32 -04:00
<target name="tar" depends="revision" description="Build Linux Portable TAR package">
<property name="dir.staging" location="${dir.dist}/tar" />
2018-06-12 15:25:10 -04:00
<copy-replace todir="${dir.staging}">
2018-07-01 12:36:32 -04:00
<fileset dir="${dir.installer}/tar" includes="*.sh" />
2018-06-12 15:25:10 -04:00
</copy-replace>
<tar destfile="${dir.dist}/${release}-portable.tar.xz" compression="${tar.compression}" longfile="posix" encoding="utf-8">
2018-06-12 15:25:10 -04:00
<tarfileset dir="${dir.staging}" includes="*.sh" filemode="755" />
<tarfileset prefix="jar" dir="${dir.dist}/lib" />
2017-02-09 11:18:24 -05:00
<!-- include native libraries for all supported platforms -->
<tarfileset prefix="lib/armv7l" dir="${dir.lib}/native/linux-armv7l" includes="*.so" />
<tarfileset prefix="lib/aarch64" dir="${dir.lib}/native/linux-armv8" includes="*.so" />
2017-02-09 11:18:24 -05:00
<tarfileset prefix="lib/i686" dir="${dir.lib}/native/linux-i686" includes="*.so" />
<tarfileset prefix="lib/x86_64" dir="${dir.lib}/native/linux-amd64" includes="*.so" />
<!-- include maintainer public key -->
<tarfileset dir="${dir.installer}/gpg" includes="maintainer.gpg" />
2017-02-09 11:18:24 -05:00
</tar>
2014-08-01 07:47:39 -04:00
</target>
2018-06-22 10:44:23 -04:00
<target name="spk" depends="revision" description="Build Synology NAS package">
<property name="dir.staging" location="${dir.dist}/spk" />
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/spk" />
</copy-replace>
<spk destdir="${dir.dist}" name="${package.name}" version="${application.version}" arch="noarch" compression="${tar.compression}">
2016-11-04 16:19:30 -04:00
<info name="displayname" value="${application.name}" />
<info name="description" value="${package.description}" />
<info name="maintainer" value="${package.project}" />
<info name="maintainer_url" value="${package.homepage}" />
<info name="distributor" value="${package.project}" />
<info name="distributor_url" value="${package.homepage}" />
<info name="support_url" value="${link.help.synology}" />
<info name="helpurl" value="${link.help.manpage}" />
<info name="firmware" value="6.0" />
<info name="startable" value="no" />
<info name="silent_install" value="yes" />
<info name="silent_uninstall" value="yes" />
<info name="silent_upgrade" value="yes" />
<info name="thirdparty" value="yes" />
<!-- Dependencies are troublesome for some users because they cannot be skipped or ignored (i.e. DSM does not support optional or recommended dependencies) -->
<!-- <info name="start_dep_services" value="ssh" /> -->
<!-- <info name="install_dep_packages" value="oracle-java" /> -->
2014-08-01 07:47:39 -04:00
<icon size="72" file="${dir.installer}/icons/icon72.png" />
<icon size="256" file="${dir.installer}/icons/icon256.png" />
<scripts dir="${dir.staging}/scripts" filemode="755" />
<package dir="${dir.staging}/package" includes="*.sh" filemode="755" />
2018-06-23 08:19:10 -04:00
<package prefix="jar" dir="${dir.dist}/lib" includes="*.jar" />
2015-05-16 01:35:51 -04:00
<!-- include native libraries for all supported platforms -->
2016-12-16 06:32:05 -05:00
<package prefix="lib/armv7l" dir="${dir.lib}/native/linux-armv7l" includes="*.so" />
2018-07-22 12:30:36 -04:00
<package prefix="lib/aarch64" dir="${dir.lib}/native/linux-armv8" includes="*.so" />
2016-12-16 06:32:05 -05:00
<package prefix="lib/i686" dir="${dir.lib}/native/linux-i686" includes="*.so" />
<package prefix="lib/x86_64" dir="${dir.lib}/native/linux-amd64" includes="*.so" />
2018-06-26 06:34:51 -04:00
<codesign secring="${dir.installer}/gpg/syno.gpg" keyid="${gpg.key}" password="${gpg.pwd}" />
2014-08-01 07:47:39 -04:00
</spk>
2017-03-04 05:14:14 -05:00
2018-06-22 10:44:23 -04:00
<move file="${dir.dist}/${package.name}-${application.version}-noarch.spk" tofile="${dir.dist}/${release}_noarch.spk" />
2014-08-01 07:47:39 -04:00
</target>
2018-07-04 11:15:07 -04:00
<target name="qpkg" depends="revision" description="Build QNAP NAS Package">
<property name="dir.staging" location="${dir.dist}/qpkg" />
2018-07-04 11:27:08 -04:00
<property name="dir.base" location="${dir.dist}/qpkg/shared" />
2018-07-04 11:15:07 -04:00
<copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/qpkg" excludes="**/*.gif" />
</copy-replace>
<copy todir="${dir.staging}">
<fileset dir="${dir.installer}/qpkg" includes="**/*.gif" />
</copy>
2018-07-04 11:27:08 -04:00
<copy todir="${dir.base}/jar">
2018-07-04 11:15:07 -04:00
<fileset dir="${dir.dist}/lib" includes="*.jar" />
</copy>
<!-- include native libraries for all supported platforms -->
2018-07-04 11:27:08 -04:00
<copy todir="${dir.base}/lib/armv7l">
2018-07-04 11:15:07 -04:00
<fileset dir="${dir.lib}/native/linux-armv7l" />
</copy>
<copy todir="${dir.base}/lib/aarch64">
2018-07-04 11:15:07 -04:00
<fileset dir="${dir.lib}/native/linux-armv8" />
</copy>
2018-07-04 11:27:08 -04:00
<copy todir="${dir.base}/lib/i686">
2018-07-04 11:15:07 -04:00
<fileset dir="${dir.lib}/native/linux-i686" />
</copy>
2018-07-04 11:27:08 -04:00
<copy todir="${dir.base}/lib/x86_64">
2018-07-04 11:15:07 -04:00
<fileset dir="${dir.lib}/native/linux-amd64" />
</copy>
<!-- fix execute permissions -->
<chmod verbose="yes" perm="+x">
2018-07-04 11:27:08 -04:00
<fileset dir="${dir.base}" includes="**/*.sh" />
<fileset dir="${dir.base}" includes="**/fpcalc" />
2018-07-04 11:15:07 -04:00
</chmod>
2018-07-04 11:27:08 -04:00
<exec executable="qbuild" dir="${dir.staging}" failonerror="yes">
2018-07-04 12:08:14 -04:00
<arg line="--7zip --build-dir ${dir.dist}" />
2018-07-04 11:15:07 -04:00
</exec>
2018-07-04 11:41:20 -04:00
<move file="${dir.dist}/${package.name}_${application.version}.qpkg" tofile="${dir.dist}/${release}.qpkg" />
2018-07-04 11:15:07 -04:00
</target>
2018-06-14 02:55:07 -04:00
<target name="clean" description="Delete build artifacts">
2014-08-01 07:47:39 -04:00
<delete dir="${dir.dist}" />
<delete dir="${dir.build}" />
</target>
2016-09-19 05:09:47 -04:00
<target name="revision" depends="init">
2016-04-20 12:57:03 -04:00
<exec executable="git" outputproperty="revision" failonerror="true">
<arg line="rev-list --count master" />
</exec>
<echo>Revision: ${revision}</echo>
2014-08-01 07:47:39 -04:00
</target>
2016-09-19 05:09:47 -04:00
<target name="init">
<mkdir dir="${dir.build}" />
<mkdir dir="${dir.dist}" />
<mkdir dir="${dir.release}" />
2016-09-20 02:40:38 -04:00
<mkdir dir="${dir.cache}" />
2016-09-19 05:09:47 -04:00
2016-09-19 04:32:49 -04:00
<path id="lib.classpath">
<fileset dir="${dir.lib}" includes="**/*.jar" excludes="**/*-jdk14.jar" />
</path>
<taskdef resource="org/codehaus/groovy/antlib.xml" classpathref="lib.classpath" />
2016-09-19 04:32:49 -04:00
<taskdef resource="net/filebot/ant/spk/antlib.xml" classpathref="lib.classpath" />
<taskdef resource="org/vafer/jdeb/ant/antlib.xml" classpathref="lib.classpath" />
2016-09-19 04:32:49 -04:00
<taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpathref="lib.classpath" />
</target>
<target name="stage" description="Stage release files">
2014-08-01 07:47:39 -04:00
<mkdir dir="${dir.release}" />
<patternset id="release.files">
<include name="*.msi" />
2018-07-04 11:15:07 -04:00
<include name="*.zip" />
<include name="*.pkg" />
<include name="*.deb" />
<include name="*.tar.xz" />
<include name="*.spk" />
2018-07-04 11:15:07 -04:00
<include name="*.qpkg" />
</patternset>
<patternset id="verification.files">
<include name="*.asc" />
<include name="*.sha256" />
</patternset>
2018-06-21 15:05:21 -04:00
<!-- add *.asc files -->
2018-06-22 10:44:23 -04:00
<release-sign>
<fileset dir="${dir.dist}">
<patternset refid="release.files" />
2018-06-22 10:44:23 -04:00
</fileset>
</release-sign>
2017-04-16 13:08:09 -04:00
2018-06-21 15:05:21 -04:00
<!-- add *.sha256 files -->
<checksum algorithm="SHA-256" pattern="{0}" fileext=".sha256">
<fileset dir="${dir.dist}">
<patternset refid="release.files" />
2017-04-16 13:08:09 -04:00
</fileset>
</checksum>
2014-08-01 07:47:39 -04:00
2018-06-26 15:03:12 -04:00
<!-- normalize Windows / Linux EOL -->
<fixcrlf srcdir="${dir.dist}" eol="unix" eof="remove" encoding="utf-8">
<patternset refid="verification.files" />
</fixcrlf>
<!-- move to release folder -->
<touch datetime="now">
<fileset dir="${dir.dist}">
<patternset refid="release.files" />
<patternset refid="verification.files" />
</fileset>
</touch>
<move todir="${dir.release}" verbose="yes" flatten="yes" overwrite="yes" preservelastmodified="yes">
<fileset dir="${dir.dist}">
<patternset refid="release.files" />
<patternset refid="verification.files" />
</fileset>
</move>
</target>
<target name="stage-update" description="Upload incremental update archive">
2018-06-27 13:26:28 -04:00
<tar destfile="${dir.dist}/CHANGES.tar.xz" compression="${tar.compression}" longfile="posix" encoding="utf-8">
<tarfileset prefix="jar" dir="${dir.dist}/lib" includes="${package.name}.jar" />
</tar>
<antcall target="stage">
2018-06-26 12:48:56 -04:00
<param name="dir.release" value="${dir.release.index}/HEAD" />
</antcall>
2014-08-01 07:47:39 -04:00
</target>
<target name="deploy-release" description="Upload release files">
2018-06-26 12:48:56 -04:00
<release-deploy dir="${dir.release.index}" todir="${scp.release}" />
2017-06-13 08:27:31 -04:00
</target>
2018-06-22 11:24:06 -04:00
<target name="deploy-chocolatey" description="Update Chocolatey Package Source">
<checksum property="x64.msi.sha256" file="${dir.release}/${release}_x64.msi" algorithm="SHA-256" />
<!-- replace variables for new release -->
<copy-replace todir="${dir.dist}/chocolatey">
<fileset dir="${dir.installer}/chocolatey">
<include name="**/*.ps1" />
<include name="**/*.nuspec" />
</fileset>
</copy-replace>
<!-- chocolatey pack and push -->
<exec executable="chocolatey" dir="${dir.dist}/chocolatey" failonerror="yes">
<arg line="pack" />
</exec>
<exec executable="chocolatey" dir="${dir.dist}/chocolatey" failonerror="yes">
<arg line="push ${package.name}.${version}.nupkg" />
</exec>
</target>
<target name="resolve" description="Retrieve dependencies with Apache Ivy">
<delete dir="${dir.lib}/ivy" />
<ivy:retrieve pattern="${dir.lib}/ivy/[type]/[artifact].[ext]" />
<antcall target="resolve-import-native">
<param name="arch" value="mac-x86_64" />
<param name="arch.jna" value="darwin" />
<param name="arch.7zj" value="Mac-x86_64" />
</antcall>
<antcall target="resolve-import-native">
<param name="arch" value="win32-x64" />
<param name="arch.jna" value="win32-x86-64" />
<param name="arch.7zj" value="Windows-amd64" />
</antcall>
<antcall target="resolve-import-native">
<param name="arch" value="win32-x86" />
<param name="arch.jna" value="win32-x86/" />
<param name="arch.7zj" value="Windows-x86" />
</antcall>
<antcall target="resolve-import-native">
<param name="arch" value="linux-amd64" />
<param name="arch.jna" value="linux-x86-64" />
<param name="arch.7zj" value="Linux-amd64" />
</antcall>
<antcall target="resolve-import-native">
<param name="arch" value="linux-i686" />
<param name="arch.jna" value="linux-x86" />
<param name="arch.7zj" value="Linux-i386" />
</antcall>
<antcall target="resolve-import-native">
<param name="arch" value="linux-armv7l" />
<param name="arch.jna" value="linux-arm" />
<param name="arch.7zj" value="linux-arm" />
</antcall>
<antcall target="resolve-import-native">
<param name="arch" value="linux-armv8" />
<param name="arch.jna" value="linux-aarch64" />
<param name="arch.7zj" value="linux-aarch64" />
</antcall>
</target>
<target name="resolve-import-native">
<unzip src="${dir.lib}/ivy/jar/jna.jar" dest="${dir.lib}/native/${arch}" overwrite="yes">
<patternset>
<include name="**/${arch.jna}/*.dll" />
<include name="**/${arch.jna}/*.so" />
<include name="**/${arch.jna}/*.jnilib" />
</patternset>
<chainedmapper>
<flattenmapper />
<compositemapper>
<globmapper from="*.jnilib" to="*.dylib" />
<identitymapper />
</compositemapper>
</chainedmapper>
</unzip>
<unzip src="${dir.lib}/ivy/jar/sevenzipjbinding-all-platforms.jar" dest="${dir.lib}/native/${arch}" overwrite="yes">
<patternset>
<include name="**/${arch.7zj}/*.dll" />
<include name="**/${arch.7zj}/*.so" />
<include name="**/${arch.7zj}/*.dylib" />
</patternset>
<chainedmapper>
<flattenmapper />
<compositemapper>
<globmapper from="lib*.dll" to="*.dll" />
<identitymapper />
</compositemapper>
</chainedmapper>
</unzip>
</target>
2018-01-19 15:55:19 -05:00
<target name="eclipse-properties-builder">
<exec executable="git" outputproperty="revision" failonerror="true">
<arg line="rev-list --count master" />
</exec>
<copy-replace todir="bin">
<fileset dir="source" includes="**/*.properties" />
</copy-replace>
</target>
2014-08-01 07:47:39 -04:00
</project>