diff --git a/packages/mediacenter/install b/packages/mediacenter/install index 4a104a6240..b1c2b00d9e 100755 --- a/packages/mediacenter/install +++ b/packages/mediacenter/install @@ -2,8 +2,12 @@ . config/options -$SCRIPTS/install alsa -$SCRIPTS/install lirc -$SCRIPTS/install vdr -$SCRIPTS/install xbmc -$SCRIPTS/install xbmc-theme-Confluence +# Base + $SCRIPTS/install alsa + $SCRIPTS/install lirc + $SCRIPTS/install vdr + $SCRIPTS/install xbmc + $SCRIPTS/install xbmc-theme-Confluence + +# Plugins + $SCRIPTS/install plugins \ No newline at end of file diff --git a/packages/plugins/install b/packages/plugins/install new file mode 100755 index 0000000000..aff1243dfd --- /dev/null +++ b/packages/plugins/install @@ -0,0 +1,7 @@ +#!/bin/sh + +. config/options + +for plugin in $XBMC_PLUGINS; do + $SCRIPTS/install $plugin +done diff --git a/projects/ION/options b/projects/ION/options index 6bff95d9c4..953fdc4ee8 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -51,6 +51,11 @@ # Skins to install (Vision2) SKINS="Vision2" +# Plugins for XBMC to install (SABnzbd) +# Space separated list is supported, +# e.g. XBMC_PLUGINS="SABnzbd" + XBMC_PLUGINS="SABnzbd" + # build with network support (yes / no) NETWORK="yes" @@ -64,7 +69,7 @@ DISPLAYSERVER="xorg-server" # Graphic drivers to use (all / i915,i965,r200,r300,r600,radeon,nvidia) -# Space separated list is supported, +# Space separated list is supported, # e.g. GRAPHIC_DRIVERS="i915 i965 radeon nvidia" GRAPHIC_DRIVERS="nvidia" diff --git a/projects/generic/options b/projects/generic/options index 54bc2c6dd7..f72b2fc09d 100644 --- a/projects/generic/options +++ b/projects/generic/options @@ -51,6 +51,11 @@ # Skins to install (Vision2) SKINS="Vision2" +# Plugins for XBMC to install (SABnzbd) +# Space separated list is supported, +# e.g. XBMC_PLUGINS="SABnzbd" + XBMC_PLUGINS="SABnzbd" + # build with network support (yes / no) NETWORK="yes" diff --git a/projects/intel/options b/projects/intel/options index fd10f49754..8b9ed5f3cc 100644 --- a/projects/intel/options +++ b/projects/intel/options @@ -51,6 +51,11 @@ # Skins to install (Vision2) SKINS="Vision2" +# Plugins for XBMC to install (SABnzbd) +# Space separated list is supported, +# e.g. XBMC_PLUGINS="SABnzbd" + XBMC_PLUGINS="SABnzbd" + # build with network support (yes / no) NETWORK="yes"