extra/chromium to 40.0.2214.115-1

This commit is contained in:
Kevin Mihelich 2015-02-20 13:14:29 +00:00
parent 626f7b3ace
commit 446d4284b3
2 changed files with 13 additions and 4 deletions

View file

@ -21,7 +21,7 @@
buildarch=4
pkgname=chromium
pkgver=40.0.2214.111
pkgver=40.0.2214.115
pkgrel=1
pkgdesc="The open-source project behind Google Chrome, an attempt at creating a safer, faster, and more stable browser"
arch=('armv6h' 'armv7h')
@ -50,10 +50,10 @@ source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgn
skia.patch
v6-ffmpeg.patch
chromium-webkit-buffer-overflow.patch)
sha256sums=('9e1f1a661702217a3fa7bf25a0e70d334a236ca67fadc4bebcfa2e8f7328cd49'
sha256sums=('2261b96dba5747b52512e2391956c54f4e36b9bbaa310b16c7fb0f1e4efba6a5'
'09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
'478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
'4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9'
'db3a2ea59c64f5aa4618a385b9db0ac488e900664126af578676b5f09939f9f6'
'9db0f01517c52e3236ff52e8a664840542a19144a54923ae6aabea3dcfa92c52'
'df4be49770d508b772f98eda9fc5f37fa71d4c0459437e12f7f3db5892aa1611'
'd53c0af6636611ee190083361d100cbbdc18515d94f59c2750da121022554226'

View file

@ -1,10 +1,19 @@
#!/bin/bash
# Allow users to override command-line options
# Based on Gentoo's chromium package (and by extension, Debian's)
# Based on Gentoo's chromium package
if [[ -f /etc/chromium/default ]]; then
. /etc/chromium/default
fi
# Source additional configuration files
for file in /etc/chromium/*; do
# Don't source /etc/chromium/default again
[[ $file == /etc/chromium/default ]] && continue
if [[ -f $file ]]; then
. $file
fi
done
# Prefer user defined CHROMIUM_USER_FLAGS (from env) over system
# default CHROMIUM_FLAGS (from /etc/chromium/default)