Editing Synology package files

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 6: Line 6:
An .spk file is nothing more then a tar file, containing a standard structure and files. It is not related to any existing .spk packaging formats that are known and it looks like this .spk structure is designed/defined by Synology themselves and in no way compatible with any other packaging methods. You can 'unpack' any spk file simply by untarring (tar -xvf ''filename'') the file. Every package will contain the following files/directories (mind the capitals!):
An .spk file is nothing more then a tar file, containing a standard structure and files. It is not related to any existing .spk packaging formats that are known and it looks like this .spk structure is designed/defined by Synology themselves and in no way compatible with any other packaging methods. You can 'unpack' any spk file simply by untarring (tar -xvf ''filename'') the file. Every package will contain the following files/directories (mind the capitals!):


{| border="0" cellspacing="10"
'''INFO'''<BR>
|- valign="top"
This is a file containing information that will be displayed and used during installation. It consists of multiple key="value" lines. The following keys are used:
|'''INFO'''
::*'''package''' : The - unique! - name of the package, as will be displayed during install, in packagemanager overview and will be used as directory name under which the whole package will reside.
|This is a file containing information that will be displayed and used during installation. It consists of multiple key="value" lines. The following keys are used:
::*'''version''' : guess what...
 
::*'''maintainer''': Who is the 'owner' of the package. Only used for information purposes
{| class="wikitable"
::*'''description''': A small description of the package. Only used for information purposes
|- valign="top"
::*'''arch''': CPU Architecture."noarch" if it will fit all DiskStations. Other "arch" values can be x86, 88f6281, 88f5281, ppc853x or ppc854x, depending on the [[What kind of CPU_does my NAS have|CPU]].
|'''package'''
::*'''adminport''': optional. If the program is installed and has it own "administration" webpage, this will be the port number the server listens to.  
|The - unique! - name of the package, as will be displayed during install, in package manager overview and will be used as directory name under which the whole package will reside.
::*'''adminurl''': optional. If the program is installed and has it own "administration" webpage, this will be the rest of the url. (URL becomes <nowiki> http://own-name-of-nas:adminport/adminurl </nowiki>)
|- valign="top"
::*'''firmware''': optional. Minimum version of DSM firmware that is required to run the package.
|'''version'''
::*'''reloadui''': optional. Set to "yes" if there is a need to refresh the complete browserscreen after starting (like adding/enabling icons in left pane.
|guess what...
'''package.tgz'''<BR>
|- valign="top"
This is a compressed (gzip) tar file containing all the files that are needed. The installer will automatically unpack this package.The file has to have this name exactly, otherwise installation will end with an error "invalid file format".<BR>
|'''maintainer'''
'''scripts'''<BR>
|Who is the 'owner' of the package. Only used for information purposes
This is a directory containing multiple unix sh shell scripts:
|- valign="top"
::* '''postinst'''
|'''description'''
::* '''postuninst'''
|A small description of the package. Only used for information purposes
::* '''preinst'''
|- valign="top"
::* '''preuninst'''
|'''arch'''
::* '''preupgrade'''
|CPU Architecture. "noarch" if it will fit all DiskStations. Other "arch" values can be "x86", "88f6281", "88f6282", "88f5281", "ppc853x" or "ppc854x", depending on the [[What kind of CPU_does my NAS have|CPU]]. For models with the PPC 8241 CPU there are two different values for "arch" depending on the Linux version. It is "powerpc" for Linux 2.4 and "ppc824x" for Linux 2.6. Calling "uname -r" on a shell shows the Linux version.
::* '''postupgrade'''
|- valign="top"
::* '''start-stop-status'''
|'''adminport'''
all '*inst' scripts are used during installation and uninstallation of the package. Returning anything other then '0' as result will break the installation or uninstallation. Preinst will be called before anything is installed (this is the place to check if all installation requirements are met, for example), Postinst after (to set the file rights of the installed files, for example). Same fore the "*uninst" but then when using the 'uninstall' button on the package manager page. If a package is installed via the "upgrade" functionality of the packagemanager, two scripts will be called: pre- and postupgrade. The start-stop-status script will be called by the package manager. This script will always be given an argument via the package manager. <BR>
|optional. If the program is installed and has it own "administration" webpage, this will be the port number the server listens to.  
Hitting "run" in packagemanager will start this script with the 'start' argument, 'stop' result in 'stop'. When (re-)loading the packagemanager page, it will also call the script for a 'status' update. Finally, there is the possibility to show the log file via the info window. In all cases, returning '0' means 'all ok' and '1' means 'error occurred' or 'not running' (when checking status). When given the 'log' argument in the start-stop-status script, you are able to echo the filename of the logfile to STDOUT and the content of that file will be displayed under the 'log' tab of the info window.
|- valign="top"
|'''adminurl'''
|optional. If the program is installed and has it own "administration" webpage, this will be the rest of the url. (URL becomes <nowiki>http://own-name-of-nas:adminport/adminurl</nowiki>)
|- valign="top"
|'''firmware'''
|optional. Minimum version of DSM firmware that is required to run the package.
|- valign="top"
|'''reloadui'''
|optional. Set to "yes" if there is a need to refresh the complete browser screen after starting (like adding/enabling icons in left pane).
|- valign="top"
|'''package_icon'''
|optional. Base64 encoded icon of the package, used by DSM 3.2 and up. The size is free, but the display size is 72x72, regardless of the aspect ratio.
|}
|- valign="top"
|'''package.tgz'''
|This is a compressed (gzip) tar file containing all the files that are needed. The installer will automatically unpack this package. The file has to have this name exactly, otherwise installation will end with an error "invalid file format".
|- valign="top"
|'''scripts'''
| This is a directory containing multiple shell scripts:
{| class="wikitable"
|- valign="top"
|'''preinst'''
|This script is run before installing the package. It is the good place to check if the installation requirements are met.
|Returning anything other than 0 will stop the installation.
|- valign="top"
|'''postinst'''
|This script is run after the installation of the package. It is the good place to ensure that all file permissions and ownership are right.
|Returning anything other than 0 will stop the installation.
|- valign="top"
|'''preuninst'''
|This script is run before removing the package. It shall do the reverse action of the '''postinst''' script.
|Returning anything other than 0 will stop the uninstallation.
|- valign="top"
|'''postuninst'''
|This script is run after the package has been removed from the system.  
|Returning anything other than 0 will stop the uninstallation.
|- valign="top"
|'''preupgrade'''
|(optional) This script is run when a package is upgraded through the "upgrade" functionality of the package manager, before doing the uninstallation of the old version (before its '''preuninst''').
|Returning anything other than 0 will stop the upgrade.
|- valign="top"
|'''postupgrade'''
|(optional) This script is run when once package has been upgraded, after the new version has been installed (after its '''postinst''').
|Returning anything other than 0 will stop the upgrade, but it is too late to roll back.
|- valign="top"
|style="white-space:nowrap"|'''start-stop-status'''
|This script is used by the package manager to start, stop, and get the running status and log file location of the package once installed. It will be copied in the directory '''/usr/local/etc/rc.d/<packageName>.sh''' and run from this place. It will always be given an argument via the package manager.
* Hitting "run" in packagemanager will start this script with the '''start''' argument
* Hitting "stop" result in '''stop'''
* When (re-)loading the package manager page, it will also call the script for a '''status''' update.
* When accessing the log tab of the package info page, the argument will be '''log''', The package manager expects the filename of the logfile to be printed out to STDOUT. It will then read the content of that file and display it.
|In all cases, returning '0' means 'all ok' and '1' means 'error occurred' or 'not running' (when checking status).  
|}
|}


===Installation process===
===Installation process===
Line 93: Line 39:
Even before the firmware 722, it was possible to create a '3rdparty' option in the disk station manager. Using the package installer, this will become much easier to do.  
Even before the firmware 722, it was possible to create a '3rdparty' option in the disk station manager. Using the package installer, this will become much easier to do.  
It's quite simple:
It's quite simple:
# To install your application on the DSM Management Menu, create an application.cfg file and image directory as described in '3rd party apps integration guide'
# Create an application.cfg file and image directory as described in '3rd party apps integration guide'
# To install your application on the DSM Desktop, create a desktop.cfg file.
# place that file along with program files, images, cgi scripts and all in ''package.tgz''
# place that file along with program files, images, cgi scripts and all in ''package.tgz''
# Create a softlink (ln -s ) from /usr/syno/synoman/3rdparty/webman/$SYNOPKG_PKGNAME to  $SYNOPKG_PKGDEST in your ''postinst'' script and make sure link is removed in the ''postuninst''
# Create a softlink (ln -s ) from /usr/syno/synoman/3rdparty/webman/$SYNOPKG_PKGNAME to  $SYNOPKG_PKGDEST in your ''postinst'' script and make sure link is removed in the ''postuninst''
Line 100: Line 45:
# Create other files (scripts, INFO) and pack them (tar -cvf whatevername.spk *) into a .spk .
# Create other files (scripts, INFO) and pack them (tar -cvf whatevername.spk *) into a .spk .


That's it. By installing it, it will also create a 3rdparty directory. If you press 'reload' you will see the package can also be found in the navigation tree. Uninstallation removes all the files of the package, including the softlink.
Thats it. By installing it, it will also create a 3rdparty directory. If you press 'reload' you will see the package can also be found in the navigation tree. Uninstallation removes all the files of the package, including the softlink.


===Tips for creating packages===
===Tips for creating packages===
Line 108: Line 53:
# Creating softlinks from /usr/syno/synoman/webman/3rdparty/ to the package on a volume is a better idea then to place all under /usr/syno... directory itself. Doing this way, you prevent that disk doesn't run out of space
# Creating softlinks from /usr/syno/synoman/webman/3rdparty/ to the package on a volume is a better idea then to place all under /usr/syno... directory itself. Doing this way, you prevent that disk doesn't run out of space
# You can add your 'own' key="value" pairs to the INFO file. These will be ignored by the installer, but can be used for 'global configuration keys' during your post/preinstall scripts.
# You can add your 'own' key="value" pairs to the INFO file. These will be ignored by the installer, but can be used for 'global configuration keys' during your post/preinstall scripts.
# Make sure the read-write-execute rights are in place. Use the 'chown' and 'chmod'  commands in the scripts to make sure they are.
# Make sure the read-right-execute rights are in place. Use the 'chown' and 'chmod'  commands in the scripts to make sure they are.
# 3rdparty options always points to webpages. If you are using the same webserver/port as the disk station manager, '.nph' files will not work (without altering configuration), but ".cgi" files will. They will be treated the 'old cgi way', which means the webserver just executes them and the cgi program makes sure they spit out the relevant HTML code.
# 3rdparty options always points to webpages. If you are using the same webserver/port as the disk station manager, '.nph' files will not work (without altering configuration), but ".cgi" files will. They will be treated the 'old cgi way', which means the webserver just executes them and the cgi program makes sure they spit out the relevant HTML code.
# Because the installation process is called via the webmanager interface, it is possible to retrieve more information via the environment variables that might be needed during the installation process. You can think of "USERNAME"  => logged in user or "DOCUMENT_ROOT" => handy to know where to install .html or .cgi files for use under the webmanager interface.
# Because the installation process is called via the webmanager interface, it is possible to retrieve more information via the environment variables that might be needed during the installation process. You can think of "USERNAME"  => logged in user or "DOCUMENT_ROOT" => handy to know where to install .html or .cgi files for use under the webmanager interface.
Line 114: Line 59:
===Example===
===Example===
You can find a example .spk file 'curcon' at http://www.mertymade.com/syno/. After installing this package, you will notice a 3rdpary entry in the navigation tree on the left with the name 'Current Connections'. When clicking on it, it will show all network and windows filesharing connections from/to the diskstation. It isn't that spectacular, but a good working example how to use packages and 3rdparty option.
You can find a example .spk file 'curcon' at http://www.mertymade.com/syno/. After installing this package, you will notice a 3rdpary entry in the navigation tree on the left with the name 'Current Connections'. When clicking on it, it will show all network and windows filesharing connections from/to the diskstation. It isn't that spectacular, but a good working example how to use packages and 3rdparty option.
[[Category:SynologyWiki]]
[[Category:ToBeExported]]
Please note that all contributions to wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Wiki:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)