Remove ipk package and replace with armhf deb package
This commit is contained in:
parent
acf8a061bd
commit
400b678160
|
@ -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" />
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
rm -f @{deb.prefix}/bin/filebot
|
||||
rm -f /usr/bin/filebot
|
||||
|
|
Loading…
Reference in New Issue