mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 21:26:49 +00:00
mono: remove package
This commit is contained in:
parent
63c5323a37
commit
f92aef9def
@ -1,34 +0,0 @@
|
|||||||
110
|
|
||||||
- Update to 5.8.0.108
|
|
||||||
|
|
||||||
109
|
|
||||||
- Update to 5.4.1.6
|
|
||||||
|
|
||||||
108
|
|
||||||
- Update to 5.4.0.201
|
|
||||||
|
|
||||||
107
|
|
||||||
- Update to 5.2.0.224
|
|
||||||
|
|
||||||
106
|
|
||||||
- Update to 5.2.0.215
|
|
||||||
|
|
||||||
105
|
|
||||||
- Update to 5.0.1.1
|
|
||||||
|
|
||||||
104
|
|
||||||
- Update to 5.0.0.100
|
|
||||||
|
|
||||||
103
|
|
||||||
- Update to 4.8.1.0
|
|
||||||
|
|
||||||
102
|
|
||||||
- Update to 4.8.0.495
|
|
||||||
|
|
||||||
101
|
|
||||||
- Update to 4.2.1.102
|
|
||||||
- Build static for all projects and architectures
|
|
||||||
- Remove uneeded binaries and libraries
|
|
||||||
|
|
||||||
100
|
|
||||||
- Initial release
|
|
Binary file not shown.
Before Width: | Height: | Size: 14 KiB |
@ -1,72 +0,0 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
||||||
|
|
||||||
PKG_NAME="mono"
|
|
||||||
PKG_VERSION="5.8.0.108"
|
|
||||||
PKG_SHA256="ecd7c55c2f62caa65fb360ace74a45ee44bbe2de046566d90594ba66c082f39c"
|
|
||||||
PKG_REV="110"
|
|
||||||
PKG_ARCH="any"
|
|
||||||
PKG_LICENSE="MIT"
|
|
||||||
PKG_SITE="http://www.mono-project.com"
|
|
||||||
PKG_URL="http://download.mono-project.com/sources/mono/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
||||||
PKG_DEPENDS_TARGET="toolchain mono:host libgdiplus sqlite zlib"
|
|
||||||
PKG_SECTION="tools"
|
|
||||||
PKG_SHORTDESC="Mono: a cross platform, open source .NET framework"
|
|
||||||
PKG_LONGDESC="Mono ($PKG_VERSION) is a software platform designed to allow developers to easily create cross platform applications part of the .NET Foundation"
|
|
||||||
PKG_TOOLCHAIN="autotools"
|
|
||||||
|
|
||||||
PKG_IS_ADDON="yes"
|
|
||||||
PKG_ADDON_NAME="Mono"
|
|
||||||
PKG_ADDON_TYPE="xbmc.python.script"
|
|
||||||
PKG_MAINTAINER="Anton Voyl (awiouy)"
|
|
||||||
|
|
||||||
prefix="/storage/.kodi/addons/$PKG_SECTION.$PKG_NAME"
|
|
||||||
options="--build=$HOST_NAME \
|
|
||||||
--prefix=$prefix \
|
|
||||||
--bindir=$prefix/bin \
|
|
||||||
--sbindir=$prefix/sbin \
|
|
||||||
--sysconfdir=$prefix/etc \
|
|
||||||
--libexecdir=$prefix/lib \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--disable-boehm \
|
|
||||||
--disable-libraries \
|
|
||||||
--without-mcs-docs"
|
|
||||||
|
|
||||||
configure_host() {
|
|
||||||
cp -PR ../* .
|
|
||||||
./configure $options --host=$HOST_NAME
|
|
||||||
}
|
|
||||||
|
|
||||||
makeinstall_host() {
|
|
||||||
: # nop
|
|
||||||
}
|
|
||||||
|
|
||||||
configure_target() {
|
|
||||||
cp -PR ../* .
|
|
||||||
./configure $options --host=$TARGET_NAME \
|
|
||||||
--disable-mcs-build
|
|
||||||
}
|
|
||||||
|
|
||||||
makeinstall_target() {
|
|
||||||
make -C "$PKG_BUILD/.$HOST_NAME" install DESTDIR="$INSTALL"
|
|
||||||
make -C "$PKG_BUILD/.$TARGET_NAME" install DESTDIR="$INSTALL"
|
|
||||||
$STRIP "$INSTALL/storage/.kodi/addons/$PKG_SECTION.$PKG_NAME/bin/mono"
|
|
||||||
}
|
|
||||||
|
|
||||||
addon() {
|
|
||||||
mkdir -p "$ADDON_BUILD/$PKG_ADDON_ID"
|
|
||||||
|
|
||||||
cp -PR "$PKG_BUILD/.install_pkg/storage/.kodi/addons/$PKG_SECTION.$PKG_NAME"/* \
|
|
||||||
"$ADDON_BUILD/$PKG_ADDON_ID/"
|
|
||||||
|
|
||||||
rm -fr "$ADDON_BUILD/$PKG_ADDON_ID/include" \
|
|
||||||
"$ADDON_BUILD/$PKG_ADDON_ID/share/man"
|
|
||||||
|
|
||||||
mv "$ADDON_BUILD/$PKG_ADDON_ID/bin/mono-sgen" \
|
|
||||||
"$ADDON_BUILD/$PKG_ADDON_ID/bin/mono"
|
|
||||||
|
|
||||||
cp -L "$(get_build_dir cairo)/.install_pkg/usr/lib/libcairo.so.2" \
|
|
||||||
"$(get_build_dir libgdiplus)/.install_pkg/usr/lib/libgdiplus.so" \
|
|
||||||
"$(get_build_dir pixman)/.install_pkg/usr/lib/libpixman-1.so.0" \
|
|
||||||
"$ADDON_BUILD/$PKG_ADDON_ID/lib"
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
||||||
|
|
||||||
import xbmcgui
|
|
||||||
|
|
||||||
dialog = xbmcgui.Dialog()
|
|
||||||
dialog.ok('', 'This is a console-only addon')
|
|
Loading…
x
Reference in New Issue
Block a user