* update spk package according to the latest spec (e.g. add 256x256 icon)
This commit is contained in:
parent
512dc75495
commit
b1c73f50a2
|
@ -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 |
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
|
@ -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
|
||||
|
|
|
@ -1,2 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# remove /usr/local/[package] link
|
||||
rm "/usr/local/$SYNOPKG_PKGNAME"
|
||||
|
||||
# return successfully
|
||||
exit 0
|
||||
|
|
|
@ -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.
Loading…
Reference in New Issue