From 01293c8495e5ce018774ecb893141b3b7b279f71 Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Thu, 31 May 2018 13:25:45 -0700 Subject: [PATCH] node: remove package --- packages/addons/addon-depends/node/package.mk | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 packages/addons/addon-depends/node/package.mk diff --git a/packages/addons/addon-depends/node/package.mk b/packages/addons/addon-depends/node/package.mk deleted file mode 100644 index 4e61840ff1..0000000000 --- a/packages/addons/addon-depends/node/package.mk +++ /dev/null @@ -1,38 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) -# -# OpenELEC 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. -# -# OpenELEC 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 OpenELEC. If not, see . -################################################################################ - -PKG_NAME="node" -PKG_VERSION="8.9.3" -PKG_SHA256="a5042d983f9815ee18a5c6fd75f8b3b2022ed96a2aaa8834300cd1ee81e8870c" -PKG_ARCH="any" -PKG_LICENSE="GPL" -PKG_SITE="https://nodejs.org" -PKG_URL="https://github.com/nodejs/node/archive/v$PKG_VERSION.tar.gz" -PKG_DEPENDS_HOST="toolchain" -PKG_SHORTDESC="Node.js JavaScript runtime" -PKG_LONGDESC="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. The Node.js package ecosystem, npm, is the largest ecosystem of open source libraries in the world." - -HOST_CONFIGURE_OPTS="--prefix=$TOOLCHAIN \ - --fully-static \ - --with-intl=none \ - --without-npm \ - --without-ssl" - -pre_configure_host() { - cd .. -}