Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2013
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. SPK_NAME = tvheadend
  2. SPK_VERS = 3.9~git9c1617
  3. SPK_REV = 7
  4. SPK_ICON = src/tvheadend.png
  5. DSM_UI_DIR = app
  6.  
  7. DEPENDS = cross/busybox cross/$(SPK_NAME)
  8.  
  9. MAINTAINER = SynoCommunity
  10. DESCRIPTION = Tvheadend is a TV streaming server for Linux supporting DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV and Analog video \(V4L\) as input sources. It also comes with a powerful and easy to use web interface both used for configuration and day-to-day operations, such as searching the EPG and scheduling recordings. Even so, the most notable feature of Tvheadend is how easy it is to set up: Install it, navigate to the web user interface, drill into the TV adapters tab, select your current location and Tvheadend will start scanning channels and present them to you in just a few minutes
  11. DESCRIPTION_FRE = Tvheadend est un serveur de streaming pour linux gérant les sources DVB-S, DVB-S2, DVB-C, DVB-T, ATSC, IPTV et video analogique \\\(V4L\\\). Il possède aussi une interface web puissante et ergonomique pour la configuration tout comme l\\\'utilisation au quotidien : recherche EPG ou plannification d\\\'enregistrements. Le principal point fort de Tvheadend réside avant tout dans sa facilité d\\\'utilisation : installez-le, naviguez au travers de son interface web, choisissez votre adaptateur TV dans l\\\'onglet dédié ainsi que votre localisation et Tvheadend recherchera les cannaux et vous les affichera en seulement quelques minutes
  12. ADMIN_PORT = 9981
  13. RELOAD_UI = yes
  14. DISPLAY_NAME = Tvheadend
  15. CHANGELOG = "Update to version 3.9~git9c1617"
  16.  
  17. HOMEPAGE = https://www.lonelycoder.com/tvheadend/
  18. LICENSE =
  19.  
  20. WIZARDS_DIR = src/wizard/
  21.  
  22. INSTALLER_SCRIPT = src/installer.sh
  23. SSS_SCRIPT = src/dsm-control.sh
  24. ADDITIONAL_SCRIPTS =
  25.  
  26. INSTALL_PREFIX = /usr/local/$(SPK_NAME)
  27.  
  28. POST_STRIP_TARGET = tvheadend_extra_install
  29.  
  30. BUSYBOX_CONFIG = usrmng
  31. ENV += BUSYBOX_CONFIG="$(BUSYBOX_CONFIG)"
  32.  
  33. include ../../mk/spksrc.spk.mk
  34.  
  35. .PHONY: tvheadend_extra_install
  36. tvheadend_extra_install:
  37. install -m 755 -d $(STAGING_DIR)/var
  38. install -m 755 -d $(STAGING_DIR)/app
  39. install -m 644 src/app/config $(STAGING_DIR)/app/config
  40. install -m 755 src/app/tvheadend.cgi.pl $(STAGING_DIR)/app/tvheadend.cgi
  41. install -m 755 -d $(STAGING_DIR)/var/accesscontrol
  42. install -m 700 src/accesscontrol.json $(STAGING_DIR)/var/accesscontrol/1
  43. install -m 755 -d $(STAGING_DIR)/app/images
  44. for size in 16 24 32 48 ; \
  45. do \
  46. convert $(SPK_ICON) -thumbnail $${size}x$${size} \
  47. $(STAGING_DIR)/app/images/$(SPK_NAME)-$${size}.png ; \
  48. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement