mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 01:06:30 +00:00
0b125af1eb
Signed-off-by: Matthias Reichl <hias@horus.com>
22 lines
835 B
Makefile
22 lines
835 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="pkg-config"
|
|
PKG_VERSION="0.29.2"
|
|
PKG_SHA256="6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.freedesktop.org/software/pkgconfig/"
|
|
PKG_URL="http://pkg-config.freedesktop.org/releases/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="gettext:host"
|
|
PKG_LONGDESC="A system for managing library compile/link flags that works with automake and autoconf."
|
|
PKG_BUILD_FLAGS="+local-cc"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--disable-silent-rules \
|
|
--with-internal-glib --disable-dtrace \
|
|
--with-gnu-ld"
|
|
|
|
post_makeinstall_host() {
|
|
mkdir -p ${SYSROOT_PREFIX}/usr/share/aclocal
|
|
cp pkg.m4 ${SYSROOT_PREFIX}/usr/share/aclocal
|
|
}
|