mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
87 lines
2.9 KiB
Bash
Executable File
87 lines
2.9 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
|
#
|
|
# This Program 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, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This Program 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.tv; see the file COPYING. If not, write to
|
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
# http://www.gnu.org/copyleft/gpl.html
|
|
################################################################################
|
|
|
|
. config/options $1
|
|
|
|
cd $PKG_BUILD
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--x-includes="$SYSROOT_PREFIX/usr/include" \
|
|
--x-libraries="$SYSROOT_PREFIX/usr/lib" \
|
|
--disable-silent-rules \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--disable-gtk-doc \
|
|
--enable-largefile \
|
|
--enable-atomic \
|
|
--disable-gcov \
|
|
--disable-valgrind \
|
|
--enable-xlib \
|
|
--enable-xlib-xrender \
|
|
--disable-xcb \
|
|
--disable-xlib-xcb \
|
|
--disable-xcb-shm \
|
|
--disable-qt \
|
|
--disable-quartz \
|
|
--disable-quartz-font \
|
|
--disable-quartz-image \
|
|
--disable-win32 \
|
|
--disable-win32-font \
|
|
--disable-skia \
|
|
--disable-os2 \
|
|
--disable-beos \
|
|
--disable-drm \
|
|
--disable-drm-xr \
|
|
--disable-gallium \
|
|
--disable-xcb-drm \
|
|
--enable-png \
|
|
--enable-gl \
|
|
--disable-directfb \
|
|
--disable-vg \
|
|
--disable-egl \
|
|
--enable-glx \
|
|
--disable-wgl \
|
|
--disable-script \
|
|
--enable-ft \
|
|
--enable-fc \
|
|
--enable-ps \
|
|
--enable-pdf \
|
|
--enable-svg \
|
|
--disable-test-surfaces \
|
|
--disable-tee \
|
|
--disable-xml \
|
|
--enable-pthread \
|
|
--disable-gobject \
|
|
--disable-full-testing \
|
|
--disable-trace \
|
|
--enable-interpreter \
|
|
--disable-symbol-lookup \
|
|
--enable-some-floating-point \
|
|
--with-gnu-ld \
|
|
--with-x
|
|
|
|
make
|
|
$MAKEINSTALL
|