Enable .deb build
This commit is contained in:
parent
5f1e43a948
commit
24bf42c32e
|
@ -533,19 +533,17 @@
|
|||
<param name="deb.arch" value="amd64" />
|
||||
</antcall>
|
||||
|
||||
<!-- arch i686 not allowed by deb specification, must be i386 for 32-bit x86 systems
|
||||
<!-- arch i686 not allowed by deb specification, must be i386 for 32-bit x86 systems -->
|
||||
<antcall target="deb-arch">
|
||||
<param name="arch" value="i686" />
|
||||
<param name="deb.arch" value="i386" />
|
||||
</antcall>
|
||||
-->
|
||||
|
||||
<!-- arch armv7l not allowed by deb specification, must be armhf for 32-bit armv7l systems
|
||||
<!-- arch armv7l not allowed by deb specification, must be armhf for 32-bit armv7l systems -->
|
||||
<antcall target="deb-arch">
|
||||
<param name="arch" value="armv7l" />
|
||||
<param name="deb.arch" value="armhf" />
|
||||
</antcall>
|
||||
-->
|
||||
</target>
|
||||
|
||||
|
||||
|
@ -559,7 +557,7 @@
|
|||
<!-- jdeb does not support tarfileset fullpath attribute (see https://github.com/tcurdt/jdeb/issues/245) -->
|
||||
<copy file="${path.fatjar}" tofile="${dir.staging}/FileBot.jar" />
|
||||
|
||||
<jdeb destfile="${dir.dist}/${package.name}_${version}_${deb.arch}.deb" control="${dir.staging}/control" compression="none" verbose="true">
|
||||
<jdeb destfile="${dir.dist}/${package.name}_${version}_${deb.arch}.deb" control="${dir.staging}/control" compression="xz" verbose="true">
|
||||
<tarfileset prefix="/usr/share/filebot" dir="${dir.staging}" includes="*.jar" />
|
||||
<tarfileset prefix="/usr/share/filebot" dir="${dir.staging}" includes="*.sh" filemode="755" />
|
||||
<tarfileset prefix="/usr/share/filebot" dir="${dir.lib}/native/linux-${arch}" includes="fpcalc" filemode="755" />
|
||||
|
|
|
@ -3,7 +3,6 @@ Type=Application
|
|||
Name=@{application.name}
|
||||
Comment=@{package.synopsis}
|
||||
MimeType=inode/directory;video/*;audio/*;text/*;
|
||||
Terminal=false
|
||||
Exec=filebot %F
|
||||
Icon=filebot
|
||||
Categories=@{gnome.application.categories}
|
||||
|
|
Loading…
Reference in New Issue