mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
212 lines
7 KiB
Bash
212 lines
7 KiB
Bash
# $Id: PKGBUILD 160354 2012-06-01 12:58:14Z dreisner $
|
|
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
|
|
# Contributor: Pierre Schmitz <pierre@archlinux.de>
|
|
# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com>
|
|
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
|
|
|
|
# Building for x86_64 requires lib32-glibc & lib32-zlib from [multilib]. These
|
|
# libraries are linked from the NaCl toolchain, and are only needed during
|
|
# build time.
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - removed NaCl, not for ARM
|
|
# - adjusted gyp flags for v7h
|
|
# - patch to fix webrtc code for non-android ARM
|
|
# - patch (hack) to fix skia
|
|
# - makeflags to -j3, seems to barf higher
|
|
#
|
|
# moonman <moonman [dot] ca [at] gmail [dot] com>
|
|
# -added armv6 support
|
|
|
|
buildarch=4
|
|
|
|
pkgname=chromium
|
|
pkgver=36.0.1985.125
|
|
pkgrel=1
|
|
pkgdesc="The open-source project behind Google Chrome, an attempt at creating a safer, faster, and more stable browser"
|
|
arch=('armv6h' 'armv7h')
|
|
url="http://www.chromium.org/"
|
|
license=('BSD')
|
|
depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss'
|
|
'libexif' 'libgcrypt' 'ttf-font' 'systemd' 'dbus' 'flac' 'snappy'
|
|
'speech-dispatcher' 'pciutils' 'libpulse' 'harfbuzz'
|
|
'desktop-file-utils' 'hicolor-icon-theme')
|
|
makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
|
|
'elfutils' 'subversion' 'ninja')
|
|
optdepends=('kdebase-kdialog: needed for file dialogs in KDE'
|
|
'gnome-keyring: for storing passwords in GNOME keyring'
|
|
'libgnome-keyring: for storing passwords in GNOME keyring'
|
|
'kdeutils-kwalletmanager: for storing passwords in KWallet')
|
|
provides=('chromium-browser')
|
|
conflicts=('chromium-browser')
|
|
backup=('etc/chromium/default')
|
|
install=chromium.install
|
|
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
|
|
chromium.desktop
|
|
chromium.default
|
|
chromium.sh
|
|
arm-webrtc-fix.patch
|
|
chromium-arm-r0.patch
|
|
skia.patch
|
|
v6-ffmpeg.patch)
|
|
sha256sums=('1782d0a5397e94313dee9e456de38bdfccf575c4e565f064a6ed7f9c509d5023'
|
|
'09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
|
|
'478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
|
|
'4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9'
|
|
'9db0f01517c52e3236ff52e8a664840542a19144a54923ae6aabea3dcfa92c52'
|
|
'df4be49770d508b772f98eda9fc5f37fa71d4c0459437e12f7f3db5892aa1611'
|
|
'd53c0af6636611ee190083361d100cbbdc18515d94f59c2750da121022554226'
|
|
'3fbabcbd512494b529e0a0e17560735887acf2291a74653750f9b29f5d45774d')
|
|
|
|
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
# Note: These are for Arch Linux use ONLY. For your own distribution, please
|
|
# get your own set of keys. Feel free to contact foutrelis@archlinux.org for
|
|
# more information.
|
|
# - Arch Linux ARM has obtained permission to use the Arch Linux keys.
|
|
_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
|
|
_google_default_client_id=413772536636.apps.googleusercontent.com
|
|
_google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
# Temp fix for skia
|
|
patch -Np0 -i "$srcdir/skia.patch"
|
|
|
|
# Fix WebRTC for ARM
|
|
patch -Np0 -i "$srcdir/arm-webrtc-fix.patch"
|
|
|
|
# Fix icu build on ARm
|
|
patch -Np0 -i ../chromium-arm-r0.patch
|
|
|
|
MAKEFLAGS=-j4
|
|
|
|
# Use Python 2
|
|
find . -type f -exec sed -i -r \
|
|
-e 's|/usr/bin/python$|&2|g' \
|
|
-e 's|(/usr/bin/python2)\.4$|\1|g' \
|
|
{} +
|
|
|
|
# There are still a lot of relative calls which need a workaround
|
|
mkdir "$srcdir/python2-path"
|
|
ln -s /usr/bin/python2 "$srcdir/python2-path/python"
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
export PATH="$srcdir/python2-path:$PATH"
|
|
|
|
# CFLAGS are passed through release_extra_cflags below
|
|
export -n CFLAGS CXXFLAGS
|
|
|
|
if [ "$CARCH" == "armv6h" ]; then
|
|
arch_specific_flags="
|
|
-Darmv7=0 \
|
|
-Darmv6=1 \
|
|
-Darm_fpu=vfp \
|
|
-Darm_thumb=0 \
|
|
-Dv8_can_use_vfp_instructions=false \
|
|
-Dv8_can_use_vfp2_instructions=true"
|
|
fi
|
|
|
|
if [ "$CARCH" == "armv7h" ]; then
|
|
arch_specific_flags="
|
|
-Darmv7=1 \
|
|
-Darm_fpu=vfpv3-d16"
|
|
fi
|
|
|
|
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
|
|
-Dwerror=
|
|
-Dpython_ver=2.7
|
|
-Dlinux_link_gsettings=1
|
|
-Dlinux_link_libpci=1
|
|
-Dlinux_link_libspeechd=1
|
|
-Dlinux_link_pulseaudio=1
|
|
-Dlinux_strip_binary=1
|
|
-Dlinux_use_bundled_binutils=0
|
|
-Dlinux_use_bundled_gold=0
|
|
-Dlinux_use_gold_flags=0
|
|
-Drelease_extra_cflags="$CFLAGS -DUSE_EABI_HARDFLOAT"
|
|
-Dlibspeechd_h_prefix=speech-dispatcher/
|
|
-Dffmpeg_branding=Chrome
|
|
-Dproprietary_codecs=1
|
|
-Duse_system_bzip2=1
|
|
-Duse_system_flac=1
|
|
-Duse_system_protobuf=0
|
|
-Duse_system_ffmpeg=0
|
|
-Duse_system_harfbuzz=1
|
|
-Duse_system_libevent=1
|
|
-Duse_system_libjpeg=1
|
|
-Duse_system_libpng=1
|
|
-Duse_system_libxml=0
|
|
-Duse_system_snappy=1
|
|
-Duse_system_ssl=1
|
|
-Duse_system_xdg_utils=1
|
|
-Duse_system_yasm=1
|
|
-Duse_system_zlib=0
|
|
-Dusb_ids_path=/usr/share/hwdata/usb.ids
|
|
-Duse_gconf=0
|
|
-Ddisable_fatal_linker_warnings=1
|
|
-Ddisable_glibc=1
|
|
-Ddisable_sse2=1
|
|
-Dtarget_arch=arm
|
|
-Darm_neon=0
|
|
-Dlinux_use_tcmalloc=0
|
|
-Dlogging_like_official_build=1
|
|
-Ddisable_nacl=1
|
|
-Dv8_use_arm_eabi_hardfloat=true
|
|
-Darm_float_abi=hard
|
|
-Dsysroot=
|
|
${arch_specific_flags})
|
|
|
|
# Re-configure bundled ffmpeg.
|
|
pushd third_party/ffmpeg > /dev/null || die
|
|
chromium/scripts/build_ffmpeg.sh linux arm "${PWD}" config-only || die
|
|
chromium/scripts/copy_config.sh || die
|
|
popd > /dev/null || die
|
|
|
|
build/linux/unbundle/replace_gyp_files.py "${_chromium_conf[@]}"
|
|
build/gyp_chromium --depth=. "${_chromium_conf[@]}"
|
|
|
|
ninja -C out/Release chrome chrome_sandbox
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
install -D out/Release/chrome "$pkgdir/usr/lib/chromium/chromium"
|
|
|
|
install -Dm4755 -o root -g root out/Release/chrome_sandbox \
|
|
"$pkgdir/usr/lib/chromium/chrome-sandbox"
|
|
|
|
cp out/Release/{*.pak,libffmpegsumo.so} \
|
|
"$pkgdir/usr/lib/chromium/"
|
|
|
|
# Allow users to override command-line options
|
|
install -Dm644 "$srcdir/chromium.default" "$pkgdir/etc/chromium/default"
|
|
|
|
cp -a out/Release/locales out/Release/icudtl.dat "$pkgdir/usr/lib/chromium/"
|
|
|
|
install -Dm644 out/Release/chrome.1 "$pkgdir/usr/share/man/man1/chromium.1"
|
|
|
|
install -Dm644 "$srcdir/chromium.desktop" \
|
|
"$pkgdir/usr/share/applications/chromium.desktop"
|
|
|
|
for size in 22 24 48 64 128 256; do
|
|
install -Dm644 "chrome/app/theme/chromium/product_logo_$size.png" \
|
|
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png"
|
|
done
|
|
|
|
for size in 16 32; do
|
|
install -Dm644 "chrome/app/theme/default_100_percent/chromium/product_logo_$size.png" \
|
|
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png"
|
|
done
|
|
|
|
install -D "$srcdir/chromium.sh" "$pkgdir/usr/bin/chromium"
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/chromium/LICENSE"
|
|
}
|