From fd571aacc6918ee97d648bc12e31e0b0045c4b45 Mon Sep 17 00:00:00 2001 From: Lukas Rusak Date: Thu, 21 Jul 2016 13:09:23 -0700 Subject: [PATCH] bash: add package --- packages/addons/addon-depends/bash/package.mk | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 packages/addons/addon-depends/bash/package.mk diff --git a/packages/addons/addon-depends/bash/package.mk b/packages/addons/addon-depends/bash/package.mk new file mode 100644 index 0000000000..112de1bc82 --- /dev/null +++ b/packages/addons/addon-depends/bash/package.mk @@ -0,0 +1,43 @@ +################################################################################ +# 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 . +################################################################################ + +PKG_NAME="bash" +PKG_VERSION="4.3.46" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="GPL" +PKG_SITE="http://www.gnu.org/software/bash/bash.html" +PKG_URL="ftp://ftp.cwru.edu/pub/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.gz" +PKG_PRIORITY="optional" +PKG_SECTION="devel" +PKG_SHORTDESC="The GNU Bourne Again shell" +PKG_LONGDESC="The GNU Bourne Again shell" + +PKG_IS_ADDON="no" +PKG_AUTORECONF="no" + +PKG_CONFIGURE_OPTS_TARGET="--enable-static \ + --disable-shared \ + --with-curses \ + --enable-readline \ + --without-bash-malloc \ + --with-installed-readline" + +pre_configure_target() { + export LIBS="-lterminfo" +}