mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 05:06:43 +00:00
Revert "readline: build as static library"
This reverts commit fab861e4b62bb18a9b08371604fda5f19511a5e2.
This commit is contained in:
parent
fab861e4b6
commit
201bc6f508
@ -26,7 +26,7 @@ PKG_LICENSE="LGPL"
|
|||||||
PKG_SITE="http://www.mysql.com"
|
PKG_SITE="http://www.mysql.com"
|
||||||
PKG_URL="http://ftp.gwdg.de/pub/misc/$PKG_NAME/Downloads/MySQL-5.1/$PKG_NAME-$PKG_VERSION.tar.gz"
|
PKG_URL="http://ftp.gwdg.de/pub/misc/$PKG_NAME/Downloads/MySQL-5.1/$PKG_NAME-$PKG_VERSION.tar.gz"
|
||||||
PKG_DEPENDS="zlib ncurses"
|
PKG_DEPENDS="zlib ncurses"
|
||||||
PKG_BUILD_DEPENDS="toolchain zlib readline ncurses mysql-hosttools"
|
PKG_BUILD_DEPENDS="toolchain zlib ncurses mysql-hosttools"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
PKG_SECTION="database"
|
PKG_SECTION="database"
|
||||||
PKG_SHORTDESC="mysql: A database server"
|
PKG_SHORTDESC="mysql: A database server"
|
||||||
|
@ -30,8 +30,8 @@ mkdir -p .build-target && cd .build-target
|
|||||||
--exec-prefix=/usr \
|
--exec-prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--datadir=/usr/share \
|
--datadir=/usr/share \
|
||||||
--disable-shared \
|
--enable-shared \
|
||||||
--enable-static \
|
--disable-static \
|
||||||
--with-curses \
|
--with-curses \
|
||||||
--without-purify
|
--without-purify
|
||||||
|
|
||||||
|
32
packages/devel/readline/install
Executable file
32
packages/devel/readline/install
Executable file
@ -0,0 +1,32 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
||||||
|
#
|
||||||
|
# This Program 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, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This Program 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.tv; see the file COPYING. If not, write to
|
||||||
|
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
mkdir -p $INSTALL/usr/lib
|
||||||
|
cp -P $PKG_BUILD/.build-target/shlib/libreadline.so.6.2 $INSTALL/usr/lib
|
||||||
|
ln -sf /usr/lib/libreadline.so.6.2 $INSTALL/usr/lib/libreadline.so.6
|
||||||
|
ln -sf /usr/lib/libreadline.so.6 $INSTALL/usr/lib/libreadline.so
|
||||||
|
|
||||||
|
cp -P $PKG_BUILD/.build-target/shlib/libhistory.so.6.2 $INSTALL/usr/lib
|
||||||
|
ln -sf /usr/lib/libhistory.so.6.2 $INSTALL/usr/lib/libhistory.so.6
|
||||||
|
ln -sf /usr/lib/libhistory.so.6 $INSTALL/usr/lib/libhistory.so
|
@ -34,8 +34,6 @@ else
|
|||||||
DEVTOOLS_CONFIG="--disable-monitor --disable-test --enable-tools"
|
DEVTOOLS_CONFIG="--disable-monitor --disable-test --enable-tools"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LDFLAGS="$LDFLAGS -ltinfo"
|
|
||||||
|
|
||||||
cd $PKG_BUILD
|
cd $PKG_BUILD
|
||||||
./configure --host=$TARGET_NAME \
|
./configure --host=$TARGET_NAME \
|
||||||
--build=$HOST_NAME \
|
--build=$HOST_NAME \
|
||||||
|
@ -26,7 +26,7 @@ PKG_LICENSE="GPL"
|
|||||||
PKG_SITE="http://www.bluez.org/"
|
PKG_SITE="http://www.bluez.org/"
|
||||||
PKG_URL="http://www.kernel.org/pub/linux/bluetooth/$PKG_NAME-$PKG_VERSION.tar.xz"
|
PKG_URL="http://www.kernel.org/pub/linux/bluetooth/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||||
PKG_DEPENDS="libusb-compat dbus glib systemd"
|
PKG_DEPENDS="libusb-compat dbus glib systemd"
|
||||||
PKG_BUILD_DEPENDS="toolchain libusb-compat dbus glib systemd ncurses readline"
|
PKG_BUILD_DEPENDS="toolchain libusb-compat dbus glib systemd readline"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
PKG_SECTION="network"
|
PKG_SECTION="network"
|
||||||
PKG_SHORTDESC="bluez: Bluetooth Tools and System Daemons for Linux."
|
PKG_SHORTDESC="bluez: Bluetooth Tools and System Daemons for Linux."
|
||||||
|
@ -38,8 +38,6 @@ fi
|
|||||||
|
|
||||||
export WPASUPPLICANT="/usr/bin/wpa_supplicant"
|
export WPASUPPLICANT="/usr/bin/wpa_supplicant"
|
||||||
|
|
||||||
LDFLAGS="$LDFLAGS -ltinfo"
|
|
||||||
|
|
||||||
cd $PKG_BUILD
|
cd $PKG_BUILD
|
||||||
./configure --host=$TARGET_NAME \
|
./configure --host=$TARGET_NAME \
|
||||||
--build=$HOST_NAME \
|
--build=$HOST_NAME \
|
||||||
|
@ -26,8 +26,8 @@ PKG_LICENSE="GPL"
|
|||||||
PKG_SITE="http://www.connman.net"
|
PKG_SITE="http://www.connman.net"
|
||||||
#PKG_URL="http://www.kernel.org/pub/linux/network/connman/$PKG_NAME-$PKG_VERSION.tar.xz"
|
#PKG_URL="http://www.kernel.org/pub/linux/network/connman/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||||
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz"
|
PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||||
PKG_DEPENDS="glib dbus systemd iptables wpa_supplicant ntp Python pygobject dbus-python"
|
PKG_DEPENDS="glib readline dbus systemd iptables wpa_supplicant ntp Python pygobject dbus-python"
|
||||||
PKG_BUILD_DEPENDS="toolchain glib ncurses readline dbus systemd iptables"
|
PKG_BUILD_DEPENDS="toolchain glib readline dbus systemd iptables"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
PKG_SECTION="network"
|
PKG_SECTION="network"
|
||||||
PKG_SHORTDESC="connman: Network manager daemon"
|
PKG_SHORTDESC="connman: Network manager daemon"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user