mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-15 05:09:55 +00:00
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.22.5"
|
|
PKG_SHA256="fe10c37353213d78a5b83d48af231e005c4da84db5ce88037d88355938259640"
|
|
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
|
|
}
|