mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 07:56:21 +00:00
4f8d2a57e9
* Initial fully buildable/bootable Odin Support * Rework NX-Boot to FAT32 Boot for shared usage between switch and odin * Move shared packages from switch/odin to main packages folder
31 lines
1.1 KiB
Makefile
31 lines
1.1 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="libXfont2"
|
|
PKG_VERSION="2.0.6"
|
|
PKG_SHA256="74ca20017eb0fb3f56d8d5e60685f560fc85e5ff3d84c61c4cb891e40c27aef4"
|
|
PKG_LICENSE="OSS"
|
|
PKG_SITE="https://www.X.org"
|
|
PKG_URL="https://xorg.freedesktop.org/archive/individual/lib/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain util-macros xtrans freetype libfontenc"
|
|
PKG_LONGDESC="X font Library"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-ipv6 \
|
|
--enable-freetype \
|
|
--enable-builtins \
|
|
--disable-pcfformat \
|
|
--disable-bdfformat \
|
|
--disable-snfformat \
|
|
--enable-fc \
|
|
--with-gnu-ld \
|
|
--without-xmlto"
|
|
|
|
if [ "${PROJECT}" = "L4T" -o "${DEVICE}" = "Odin" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET+=" --enable-shared"
|
|
fi
|
|
|
|
post_configure_target() {
|
|
libtool_remove_rpath libtool
|
|
}
|