-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
repo: add linuxserver docker wrapper add-on repo
- Loading branch information
Showing
4 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
packages/addons/repository/repository.linuxserver.docker/changelog.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
100 | ||
- Initial LibreELEC version |
Binary file added
BIN
+15.9 KB
packages/addons/repository/repository.linuxserver.docker/icon/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions
51
packages/addons/repository/repository.linuxserver.docker/package.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
33 changes: 33 additions & 0 deletions
33
packages/addons/repository/repository.linuxserver.docker/sources/addon.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |