2012-06-11 04:16:02 +00:00
|
|
|
# $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
|
|
|
|
|
|
|
|
buildarch=4
|
|
|
|
|
|
|
|
pkgname=chromium
|
2012-06-11 04:21:09 +00:00
|
|
|
pkgver=19.0.1084.56
|
|
|
|
pkgrel=1
|
2012-06-11 04:16:02 +00:00
|
|
|
pkgdesc="The open-source project behind Google Chrome, an attempt at creating a safer, faster, and more stable browser"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.chromium.org/"
|
|
|
|
license=('BSD')
|
|
|
|
depends=('gtk2' 'dbus-glib' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent'
|
|
|
|
'libxss' 'libgcrypt' 'ttf-dejavu' 'desktop-file-utils'
|
|
|
|
'hicolor-icon-theme')
|
|
|
|
makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
|
|
|
|
'elfutils')
|
|
|
|
optdepends=('kdebase-kdialog: needed for file dialogs in KDE')
|
|
|
|
# Needed for the NaCl toolchain
|
|
|
|
[[ $CARCH == x86_64 ]] && makedepends+=('lib32-zlib')
|
|
|
|
provides=('chromium-browser')
|
|
|
|
conflicts=('chromium-browser')
|
|
|
|
backup=('etc/chromium/default')
|
|
|
|
install=chromium.install
|
|
|
|
source=(http://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.bz2
|
|
|
|
chromium.desktop
|
|
|
|
chromium.default
|
|
|
|
chromium.sh
|
|
|
|
chromium-gcc47.patch
|
|
|
|
sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch)
|
2012-06-11 04:21:09 +00:00
|
|
|
sha256sums=('c33a2cac35a3dd6ef359d8dee47dc405732f9e0865c82cffb876f5d936ec1418'
|
|
|
|
'd10b849436a695b558947b441d0e6bc6555e44173d9b495a73b4aa4317c816de'
|
2012-06-11 04:16:02 +00:00
|
|
|
'478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
|
|
|
|
'4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9'
|
|
|
|
'f607347ba8477d3c8e60eb3803d26f3c9869f77fd49986c60887c59a6aa7d30d'
|
|
|
|
'a700aa054800d1b21d84eaba27c38a703dfa023e9226d11a942690c2a0630aff')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/chromium-$pkgver"
|
|
|
|
|
|
|
|
# Fix build with gcc 4.7 (patch from openSUSE)
|
|
|
|
patch -Np2 -i "$srcdir/chromium-gcc47.patch"
|
|
|
|
|
|
|
|
# http://code.google.com/p/chromium/issues/detail?id=109527
|
|
|
|
sed -i 's|glib/gutils.h|glib.h|' ui/base/l10n/l10n_util.cc
|
|
|
|
|
|
|
|
# SQLite: Fix a problem in fts3_write.c causing stack memory to be referenced
|
|
|
|
# after it is out of scope (http://www.sqlite.org/src/info/f9c4a7c8f4)
|
|
|
|
# (http://code.google.com/p/chromium/issues/detail?id=122525)
|
|
|
|
patch -i "$srcdir/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch" \
|
|
|
|
third_party/sqlite/amalgamation/sqlite3.c
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
export PATH="$srcdir/python2-path:$PATH"
|
|
|
|
|
|
|
|
ln -s "$srcdir/pepper_${pkgver%%.*}/toolchain/linux_x86_newlib" \
|
|
|
|
native_client/toolchain/linux_x86_newlib
|
|
|
|
|
|
|
|
# We need to disable system_ssl until "next protocol negotiation" support is
|
|
|
|
# available in our nss package.
|
|
|
|
# (See https://bugzilla.mozilla.org/show_bug.cgi?id=547312)
|
|
|
|
|
|
|
|
# CFLAGS are passed through release_extra_cflags below
|
|
|
|
export -n CFLAGS CXXFLAGS
|
|
|
|
|
|
|
|
# Silence "identifier 'nullptr' is a keyword in C++11" warnings
|
|
|
|
CFLAGS+=' -Wno-c++0x-compat'
|
|
|
|
|
|
|
|
build/gyp_chromium --depth=. \
|
|
|
|
-Dwerror= \
|
|
|
|
-Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
|
|
|
|
-Dlinux_strip_binary=1 \
|
|
|
|
-Dlinux_use_gold_binary=0 \
|
|
|
|
-Dlinux_use_gold_flags=0 \
|
|
|
|
-Drelease_extra_cflags="$CFLAGS -DUSE_EABI_HARDFLOAT" \
|
|
|
|
-Dffmpeg_branding=Chrome \
|
|
|
|
-Dproprietary_codecs=1 \
|
|
|
|
-Duse_system_bzip2=1 \
|
|
|
|
-Duse_system_ffmpeg=0 \
|
|
|
|
-Duse_system_libevent=1 \
|
|
|
|
-Duse_system_libjpeg=1 \
|
|
|
|
-Duse_system_libpng=1 \
|
|
|
|
-Duse_system_libxml=0 \
|
|
|
|
-Duse_system_ssl=0 \
|
|
|
|
-Duse_system_yasm=1 \
|
|
|
|
-Duse_system_zlib=1 \
|
|
|
|
-Duse_gconf=0 \
|
|
|
|
-Ddisable_sse2=1 \
|
|
|
|
-Dtarget_arch=arm \
|
|
|
|
-Darmv7=1 \
|
|
|
|
-Darm_neon=0 \
|
|
|
|
-Darm_fpu=vfpv3-d16 \
|
|
|
|
-Dlinux_use_tcmalloc=0 \
|
|
|
|
-Ddisable_nacl=1
|
|
|
|
|
|
|
|
make chrome chrome_sandbox BUILDTYPE=Release
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/chromium-$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/chromium-sandbox"
|
|
|
|
|
|
|
|
cp out/Release/{{chrome,resources}.pak,libffmpegsumo.so} \
|
|
|
|
"$pkgdir/usr/lib/chromium/"
|
|
|
|
|
|
|
|
# These links are only needed when building with system ffmpeg
|
|
|
|
#ln -s /usr/lib/libavcodec.so.53 "$pkgdir/usr/lib/chromium/"
|
|
|
|
#ln -s /usr/lib/libavformat.so.53 "$pkgdir/usr/lib/chromium/"
|
|
|
|
#ln -s /usr/lib/libavutil.so.51 "$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/resources "$pkgdir/usr/lib/chromium/"
|
|
|
|
|
|
|
|
find "$pkgdir/usr/lib/chromium/" -name '*.d' -type f -delete
|
|
|
|
|
|
|
|
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 16 22 24 32 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
|
|
|
|
|
|
|
|
install -D "$srcdir/chromium.sh" "$pkgdir/usr/bin/chromium"
|
|
|
|
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/chromium/LICENSE"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|