mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
175 lines
6.3 KiB
Makefile
175 lines
6.3 KiB
Makefile
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
|
# http://www.gnu.org/copyleft/gpl.html
|
|
################################################################################
|
|
|
|
PKG_NAME="chromium"
|
|
PKG_VERSION="50.0.2661.75"
|
|
PKG_REV="101"
|
|
PKG_ARCH="x86_64"
|
|
PKG_LICENSE="Mixed"
|
|
PKG_SITE="http://www.chromium.org/Home"
|
|
PKG_URL="https://commondatastorage.googleapis.com/chromium-browser-official/$PKG_NAME-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain pciutils dbus libXcomposite libXcursor libXtst alsa-lib bzip2 yasm nss libXScrnSaver libexif ninja:host libpng harfbuzz atk gtk+ libva-vdpau-driver"
|
|
PKG_PRIORITY="optional"
|
|
PKG_SECTION="browser"
|
|
PKG_SHORTDESC="Chromium Browser: the open-source web browser from Google"
|
|
PKG_LONGDESC="Chromium Browser: the open-source web browser from Google"
|
|
PKG_AUTORECONF="no"
|
|
|
|
PKG_IS_ADDON="yes"
|
|
PKG_ADDON_NAME="Chromium"
|
|
PKG_ADDON_TYPE="xbmc.python.script"
|
|
PKG_ADDON_PROVIDES="executable"
|
|
PKG_ADDON_REPOVERSION="7.0"
|
|
|
|
pre_make_target() {
|
|
export MAKEFLAGS="-j4"
|
|
|
|
strip_lto
|
|
|
|
# https://groups.google.com/a/chromium.org/d/topic/chromium-packagers/9JX1N2nf4PU/discussion
|
|
touch chrome/test/data/webui/i18n_process_css_test.html
|
|
}
|
|
|
|
make_target() {
|
|
# CFLAGS are passed through release_extra_cflags below
|
|
export -n CFLAGS CXXFLAGS
|
|
|
|
export LDFLAGS="$LDFLAGS -ludev"
|
|
|
|
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
# Note: These are for OpenELEC use ONLY. For your own distribution, please
|
|
# get your own set of keys.
|
|
|
|
_google_api_key=AIzaSyAQ6L9vt9cnN4nM0weaa6Y38K4eyPvtKgI
|
|
_google_default_client_id=740889307901-4bkm4e0udppnp1lradko85qsbnmkfq3b.apps.googleusercontent.com
|
|
_google_default_client_secret=9TJlhL661hvShQub4cWhANXa
|
|
|
|
local _chromium_conf=(
|
|
-Dgoogle_api_key=$_google_api_key
|
|
-Dgoogle_default_client_id=$_google_default_client_id
|
|
-Dgoogle_default_client_secret=$_google_default_client_secret
|
|
-Dtarget_arch=x64
|
|
-Dfastbuild=2
|
|
-Dwerror=
|
|
-Dclang=0
|
|
-Dpython_ver=2.7
|
|
-Dlinux_link_gsettings=0
|
|
-Dlinux_strip_binary=1
|
|
-Dlinux_use_bundled_binutils=0
|
|
-Dlinux_use_bundled_gold=0
|
|
-Dlinux_use_gold_flags=0
|
|
-Dicu_use_data_file_flag=1
|
|
-Dlogging_like_official_build=1
|
|
-Dtracing_like_official_build=1
|
|
-Dfieldtrial_testing_like_official_build=1
|
|
-Dremove_webcore_debug_symbols=1
|
|
-Drelease_extra_cflags="$CFLAGS"
|
|
-Dlibspeechd_h_prefix=speech-dispatcher/
|
|
-Dffmpeg_branding=Chrome
|
|
-Dproprietary_codecs=1
|
|
-Duse_system_bzip2=1
|
|
-Duse_system_flac=0
|
|
-Duse_system_ffmpeg=0
|
|
-Duse_system_harfbuzz=1
|
|
-Duse_system_icu=0
|
|
-Duse_system_libevent=0
|
|
-Duse_system_libjpeg=1
|
|
-Duse_system_libpng=1
|
|
-Duse_system_libvpx=0
|
|
-Duse_system_libxml=0
|
|
-Duse_system_snappy=0
|
|
-Duse_system_xdg_utils=0
|
|
-Duse_system_yasm=1
|
|
-Duse_system_zlib=0
|
|
-Duse_mojo=0
|
|
-Duse_gconf=0
|
|
-Duse_gnome_keyring=0
|
|
-Duse_pulseaudio=0
|
|
-Duse_kerberos=0
|
|
-Duse_cups=0
|
|
-Denable_hangout_services_extension=1
|
|
-Ddisable_fatal_linker_warnings=1
|
|
-Dsysroot=$SYSROOT_PREFIX
|
|
-Ddisable_glibc=1
|
|
-Denable_widevine=1
|
|
-Ddisable_nacl=1
|
|
-Ddisable_pnacl=1)
|
|
|
|
./build/linux/unbundle/replace_gyp_files.py "${_chromium_conf[@]}"
|
|
./build/gyp_chromium --depth=. "${_chromium_conf[@]}"
|
|
|
|
ninja -C out/Release chrome chrome_sandbox
|
|
}
|
|
|
|
makeinstall_target() {
|
|
:
|
|
}
|
|
|
|
addon() {
|
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/bin
|
|
cp -P $PKG_BUILD/out/Release/chrome $ADDON_BUILD/$PKG_ADDON_ID/bin/chromium.bin
|
|
cp -P $PKG_BUILD/out/Release/chrome_sandbox $ADDON_BUILD/$PKG_ADDON_ID/bin/chrome-sandbox
|
|
cp -P $PKG_BUILD/out/Release/{*.pak,*.dat,*.bin,libwidevinecdmadapter.so} $ADDON_BUILD/$PKG_ADDON_ID/bin
|
|
cp -PR $PKG_BUILD/out/Release/locales $ADDON_BUILD/$PKG_ADDON_ID/bin/
|
|
|
|
$STRIP $ADDON_BUILD/$PKG_ADDON_ID/bin/chromium.bin
|
|
$STRIP $ADDON_BUILD/$PKG_ADDON_ID/bin/chrome-sandbox
|
|
|
|
# config
|
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/config
|
|
cp -P $PKG_DIR/config/* $ADDON_BUILD/$PKG_ADDON_ID/config
|
|
|
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# pango
|
|
cp -PL $(get_build_dir pango)/.install_pkg/usr/lib/libpangocairo-1.0.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
cp -PL $(get_build_dir pango)/.install_pkg/usr/lib/libpango-1.0.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
cp -PL $(get_build_dir pango)/.install_pkg/usr/lib/libpangoft2-1.0.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# cairo
|
|
cp -PL $(get_build_dir cairo)/.install_pkg/usr/lib/libcairo.so.2 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# gtk
|
|
cp -PL $(get_build_dir gtk+)/.install_pkg/usr/lib/libgdk-x11-2.0.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
cp -PL $(get_build_dir gtk+)/.install_pkg/usr/lib/libgtk-x11-2.0.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# harfbuzz
|
|
cp -PL $(get_build_dir harfbuzz)/.install_pkg/usr/lib/libharfbuzz.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# gdk-pixbuf
|
|
cp -PL $(get_build_dir gdk-pixbuf)/.install_pkg/usr/lib/libgdk_pixbuf-2.0.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# pixbuf loaders
|
|
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/gdk-pixbuf-modules
|
|
cp -PL $(get_build_dir gdk-pixbuf)/.install_pkg/usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/* $ADDON_BUILD/$PKG_ADDON_ID/gdk-pixbuf-modules
|
|
|
|
# nss
|
|
cp -PL $(get_build_dir nss)/dist/Linux*OPT.OBJ/lib/*.so $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# nspr
|
|
cp -PL $(get_build_dir nspr)/.install_pkg/usr/lib/*.so $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# libexif
|
|
cp -PL $(get_build_dir libexif)/.install_pkg/usr/lib/* $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
|
|
# libva-vdpau-driver
|
|
cp -PL $(get_build_dir libva-vdpau-driver)/.install_pkg/usr/lib/va/*.so $ADDON_BUILD/$PKG_ADDON_ID/lib
|
|
}
|