mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-21 23:56:20 +00:00
d71a7c52be
Signed-off-by: Matthias Reichl <hias@horus.com>
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="gettext"
|
|
PKG_VERSION="0.21.1"
|
|
PKG_SHA256="50dbc8f39797950aa2c98e939947c527e5ac9ebd2c1b99dd7b06ba33a6767ae6"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://www.gnu.org/s/gettext/"
|
|
PKG_URL="https://ftp.gnu.org/pub/gnu/gettext/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_HOST="make:host"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A program internationalization library and tools."
|
|
PKG_BUILD_FLAGS="+local-cc"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--disable-static --enable-shared \
|
|
--disable-rpath \
|
|
--with-gnu-ld \
|
|
--disable-java \
|
|
--disable-curses \
|
|
--with-included-libxml \
|
|
--disable-native-java \
|
|
--disable-csharp \
|
|
--without-emacs"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-rpath"
|
|
|
|
post_configure_target() {
|
|
libtool_remove_rpath gettext-runtime/libasprintf/libtool
|
|
libtool_remove_rpath gettext-tools/libtool
|
|
}
|