Skip to content

Commit

Permalink
repo: add linuxserver docker wrapper add-on repo
Browse files Browse the repository at this point in the history
  • Loading branch information
aptalca authored and chewitt committed Jan 1, 2017
1 parent 1f61105 commit 8e3dbe5
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
100
- Initial LibreELEC version
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
################################################################################
# This file is part of LibreELEC - https://LibreELEC.tv
# Copyright (C) 2016 Team LibreELEC
#
# LibreELEC is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# LibreELEC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with LibreELEC. If not, see <http://www.gnu.org/licenses/>.
################################################################################

PKG_NAME="repository.linuxserver.docker"
PKG_VERSION="8.1"
PKG_REV="100"
PKG_ARCH="any"
PKG_ADDON_PROJECTS="Generic RPi RPi2 imx6 WeTek_Hub WeTek_Play_2 Odroid_C2"
PKG_LICENSE="GPL"
PKG_SITE="https://linuxserver.io"
PKG_URL=""
PKG_DEPENDS_TARGET="toolchain xmlstarlet:host"
PKG_SECTION=""
PKG_SHORTDESC="LinuxServer.io docker add-on repository"
PKG_LONGDESC="LinuxServer.io docker add-on repository"
PKG_AUTORECONF="no"

PKG_IS_ADDON="yes"
PKG_ADDON_NAME="LinuxServer.io Repository"
PKG_ADDON_TYPE="xbmc.addon.repository"


make_target() {
$SED -e "s|@PKG_VERSION@|$PKG_VERSION|g" \
-e "s|@PKG_REV@|$PKG_REV|g" \
-i addon.xml
}

makeinstall_target() {
: # nop
}

addon() {
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID
cp -R $PKG_BUILD/* $ADDON_BUILD/$PKG_ADDON_ID
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="repository.linuxserver.docker"
name="LinuxServer.io's Docker Add-ons"
version="@PKG_VERSION@.@PKG_REV@"
provider-name="LinuxServer.io">
<requires>
<import addon="xbmc.addon" version="@OS_VERSION@"/>
</requires>
<extension point="xbmc.addon.repository"
name="LinuxServer.io's Docker Add-on Repository">
<info compressed="true">https://raw.githubusercontent.com/linuxserver/libreelec-addon-repo/master/addons.xml</info>
<checksum>https://raw.githubusercontent.com/linuxserver/libreelec-addon-repo/master/addons.xml.md5</checksum>
<datadir zip="true">https://raw.githubusercontent.com/linuxserver/libreelec-addons/master/download</datadir>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Install add-ons from LinuxServer.io's docker repository</summary>
<description>
Download and install docker container add-ons from the LinuxServer.io repository.

Please visit https://linuxserver.io for more information.
</description>
<disclaimer> </disclaimer>
<platform>all</platform>
<news>
@PKG_ADDON_NEWS@
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.png</fanart>
@PKG_ADDON_SCREENSHOT@
</assets>
</extension>
</addon>

0 comments on commit 8e3dbe5

Please sign in to comment.