mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
b2519f95fd
As noted in the FAQ, you can still use Oracle's JDK for building or running, but we'll default to the Zulu builds in the REQUIRES since they are easily downloadable. Zulu is a good default for us at SBo since it is available for both 32 and 64 bit, freely downloadable and compatible and they provide builds for all the LTS branches. We don't currently have builds for Adoptium (previously AdoptOpenJDK, not part of the Eclipse Foundation), but if someone wants to submit builds for them, we can include them too. Note though that they do not provide 32 bit builds. Software should run with either Zulu or Oracle's JDK, or indeed any other builds of OpenJDK, so if I have broken your build with this change, apologies. This should be rare and we can change the REQUIRES back to jdkX in that case and note it in the README, but I do not expect this should be the case. Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org> |
||
---|---|---|
.. | ||
doinst.sh | ||
rc.serviio | ||
README | ||
serviio.info | ||
serviio.SlackBuild | ||
slack-desc |
Serviio DNLA Server is a free media server. It allows you to stream your media files (music, video or images) to renderer devices (e.g. a TV set, Bluray player, games console or mobile phone) on your connected home network. There is also a paid for Pro edition which further enhances the possibilities of sharing content in your connected household. If you don't buy a Pro edition licence, Serviio automatically will turn to Free version after 14 days. This SlackBuild provides no Pro edition licence. Serviio works with many devices from your connected home (TV, Playstation 3, XBox 360, smart phones, tablets, etc.). It supports profiles for particular devices so that it can be tuned to maximise the device's potential and/or minimize lack of media format playback support (via transcoding). Serviio needs a serviio user and a serviio group with GID=337 and UID=337 to work properly. Run these commands: groupadd -g 337 serviio useradd -d /opt/serviio -g 337 -u 337 -U serviio This SlackBuild also provides a /etc/rc.d/rc.serviio file. If you want to start Serviio at boot time, add these lines to /etc/rc.d/rc.local: # start Serviio DNLA Server: if [ -x /etc/rc.d/rc.serviio] ; then /etc/rc.d/rc.serviio start fi Also, add to rc.local_shutdown # stop Serviio DNLA Server if [ -x /etc/rc.d/rc.serviio] ; then /etc/rc.d/rc.serviio start fi