mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
100 lines
3.8 KiB
Makefile
100 lines
3.8 KiB
Makefile
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
#
|
|
# OpenELEC is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# OpenELEC is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
PKG_NAME="glib"
|
|
PKG_VERSION="2.34.3"
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="LGPL"
|
|
PKG_SITE="http://www.gtk.org/"
|
|
PKG_URL="http://ftp.gnome.org/pub/gnome/sources/glib/2.34/$PKG_NAME-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_HOST="ccache:host libffi:host libxml2:host zlib:host Python:host"
|
|
PKG_DEPENDS_TARGET="toolchain zlib libffi pcre glib:host Python:host"
|
|
PKG_PRIORITY="optional"
|
|
PKG_SECTION="devel"
|
|
PKG_SHORTDESC="glib: C support library"
|
|
PKG_LONGDESC="GLib is a library which includes support routines for C such as lists, trees, hashes, memory allocation, and many other things."
|
|
|
|
PKG_IS_ADDON="no"
|
|
PKG_AUTORECONF="yes"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--with-gnu-ld \
|
|
--with-libiconv=no \
|
|
--enable-debug=no \
|
|
--disable-man \
|
|
--disable-dtrace \
|
|
--disable-systemtap \
|
|
--disable-rebuilds \
|
|
--disable-gtk-doc"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="ac_cv_func_mmap_fixed_mapped=yes \
|
|
ac_cv_func_posix_getpwuid_r=yes \
|
|
ac_cv_func_posix_getgrgid_r=yes \
|
|
ac_cv_func_printf_unix98=yes \
|
|
ac_cv_func_snprintf_c99=yes \
|
|
ac_cv_func_vsnprintf_c99=yes \
|
|
glib_cv_stack_grows=no \
|
|
glib_cv_uscore=no \
|
|
glib_cv_va_val_copy=no \
|
|
--disable-selinux \
|
|
--disable-fam \
|
|
--enable-xattr \
|
|
--disable-gtk-doc \
|
|
--disable-man \
|
|
--disable-dtrace \
|
|
--disable-systemtap \
|
|
--disable-gcov \
|
|
--enable-Bsymbolic \
|
|
--with-gnu-ld \
|
|
--with-threads=posix \
|
|
--with-pcre=system"
|
|
|
|
pre_build_host() {
|
|
# hack: we need pkg.m4 for autoreconf, but pkgconfig depends on glib so install
|
|
# pkg.m4 first
|
|
$SCRIPTS/unpack pkg-config
|
|
cp $BUILD/pkg-config-*/pkg.m4 $TOOLCHAIN/share/aclocal
|
|
}
|
|
|
|
pre_configure_host() {
|
|
export ZLIB_CFLAGS=""
|
|
export ZLIB_LIBS=""
|
|
export LIBFFI_CFLAGS="-I$ROOT/$TOOLCHAIN/include/libffi"
|
|
export LIBFFI_LIBS="-L$ROOT/$TOOLCHAIN/lib -lffi"
|
|
}
|
|
|
|
post_makeinstall_host() {
|
|
cp -f gobject/.libs/glib-genmarshal $ROOT/$TOOLCHAIN/bin
|
|
cp -f gobject/glib-mkenums $ROOT/$TOOLCHAIN/bin
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
mkdir -p $SYSROOT_PREFIX/usr/lib/pkgconfig
|
|
cp g*-2.0.pc $SYSROOT_PREFIX/usr/lib/pkgconfig
|
|
|
|
mkdir -p $SYSROOT_PREFIX/usr/share/aclocal
|
|
cp ../m4macros/glib-gettext.m4 $SYSROOT_PREFIX/usr/share/aclocal
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf $INSTALL/usr/bin
|
|
rm -rf $INSTALL/usr/lib/gdbus-2.0
|
|
rm -rf $INSTALL/usr/lib/glib-2.0
|
|
rm -rf $INSTALL/usr/share
|
|
}
|