Remove ipk package and replace with armhf deb package

This commit is contained in:
Reinhard Pointner 2017-02-07 22:28:20 +08:00
parent acf8a061bd
commit 400b678160
4 changed files with 5 additions and 5 deletions

View File

@ -576,7 +576,7 @@
</copy>
<copy file="${path.fatjar}" tofile="${dir.staging}/FileBot.jar" />
<jdeb destfile="${dir.dist}/${package.name}_${version}_${deb.arch}.deb" control="${dir.staging}/control" compression="xz" changesIn="${dir.staging}/changes.txt" changesOut="${dir.dist}/${package.name}_${version}_${deb.arch}.deb.changes" 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="*.sh, fpcalc" filemode="755" />
<tarfileset prefix="/usr/share/filebot" dir="${dir.staging}" includes="*.jar, *.so, *.svg" />
<tarfileset prefix="/usr/share/applications" dir="${dir.staging}" includes="*.desktop" />

View File

@ -2,8 +2,8 @@
Name=@{application.name}
Comment=@{package.synopsis}
Type=Application
Exec=@{deb.prefix}/share/filebot/filebot.sh
Icon=@{deb.prefix}/share/filebot/icon.svg
Exec=/usr/share/filebot/filebot.sh
Icon=/usr/share/filebot/icon.svg
Terminal=false
StartupNotify=true
Categories=@{gnome.application.categories}

View File

@ -1,2 +1,2 @@
#!/bin/sh
ln -sf @{deb.prefix}/share/filebot/filebot.sh @{deb.prefix}/bin/filebot
ln -sf /usr/share/filebot/filebot.sh /usr/bin/filebot

View File

@ -1,2 +1,2 @@
#!/bin/sh
rm -f @{deb.prefix}/bin/filebot
rm -f /usr/bin/filebot