mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 06:56:19 +00:00
25 lines
918 B
Makefile
25 lines
918 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libiconv"
|
|
PKG_VERSION="1.17"
|
|
PKG_SHA256="8f74213b56238c85a50a5329f77e06198771e70dd9a739779f4c02f65d971313"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://savannah.gnu.org/projects/libiconv/"
|
|
PKG_URL="https://ftp.gnu.org/pub/gnu/libiconv/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A tool that converts from one character encoding to another through Unicode conversion."
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--host=${TARGET_NAME} \
|
|
--build=${HOST_NAME} \
|
|
--prefix=/usr \
|
|
--includedir=/usr/include/iconv \
|
|
--libdir=/usr/lib/iconv \
|
|
--sysconfdir=/etc \
|
|
--enable-static \
|
|
--disable-shared \
|
|
--disable-nls \
|
|
--disable-extra-encodings \
|
|
--with-gnu-ld"
|