* update spk package according to the latest spec (e.g. add 256x256 icon)

This commit is contained in:
Reinhard Pointner 2015-05-03 15:57:56 +00:00
parent 512dc75495
commit b1c73f50a2
8 changed files with 11 additions and 4 deletions

View File

@ -534,10 +534,10 @@
<info name="helpurl" value="http://www.filebot.net/cli.html" />
<icon size="72" file="${dir.installer}/icons/icon72.png" />
<icon size="120" file="${dir.installer}/icons/icon120.png" />
<package dir="${dir.installer}/spk/package" includes="*.sh" filemode="755" />
<icon size="256" file="${dir.installer}/icons/icon256.png" />
<package file="${path.fatjar}" fullpath="FileBot.jar" />
<package dir="${dir.installer}/spk/package" includes="*.sh" filemode="755" />
<scripts dir="${dir.installer}/spk/scripts" filemode="755" />
</spk>
</target>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

BIN
installer/icons/icon24.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
installer/icons/icon64.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -4,6 +4,8 @@
mkdir -m 777 "$SYNOPKG_PKGDEST/data"
chown -R admin.users "$SYNOPKG_PKGDEST/data"
# create /usr/local/[package] link
ln -s "/var/packages/$SYNOPKG_PKGNAME/target" "/usr/local/$SYNOPKG_PKGNAME"
# return successfully
exit 0

View File

@ -1,2 +1,7 @@
#!/bin/sh
# remove /usr/local/[package] link
rm "/usr/local/$SYNOPKG_PKGNAME"
# return successfully
exit 0

View File

@ -1,7 +1,7 @@
#!/bin/sh
# symlink to /bin on START and unlink on STOP
APP_LINK="/usr/bin/filebot"
APP_LINK="/usr/bin/$SYNOPKG_PKGNAME"
APP_ROOT="$SYNOPKG_PKGDEST"
case "$1" in

Binary file not shown.