blob: 71e825094c5470edcb4d5b435c0566ab88a2539f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
# $Id: PKGBUILD 109507 2011-02-10 15:37:06Z ibiru $
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=chromium
pkgver=9.0.597.94
pkgrel=2
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=('nss' 'gconf' 'alsa-lib' 'xdg-utils' 'hicolor-icon-theme' 'bzip2' 'libevent' 'libxss' 'libxtst' 'ttf-dejavu' 'libcups')
makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring' 'libcups')
provides=('chromium-browser')
conflicts=('chromium-browser')
install=chromium.install
source=("http://build.chromium.org/buildbot/official/chromium-${pkgver}.tar.bz2"
'chromium.desktop' 'chromium.sh')
md5sums=('41386b3df743575f2325c4c64d6d7bc7'
'c5e849fcb1101149977355c99d8ff78f'
'096a46ef386817988250d2d7bddd1b34')
build() {
cd ${srcdir}/chromium-${pkgver}
### Configure
echo 'Use python2 instead of python...'
find . -type f -exec \
sed -E 's#(/usr/bin/python)$#\12#g;s#(/usr/bin/python2)\.4$#\1#g' -i {} \;
# 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}"
# 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
build/gyp_chromium -f make build/all.gyp --depth=. \
-Dgcc_version=45 \
-Dno_strict_aliasing=1 \
-Dwerror= \
-Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
-Dlinux_strip_binary=1 \
-Drelease_extra_cflags="${CFLAGS}" \
-Dffmpeg_branding=Chrome \
-Dproprietary_codecs=1 \
-Duse_system_libjpeg=1 \
-Duse_system_libxslt=0 \
-Duse_system_libxml=0 \
-Duse_system_bzip2=1 \
-Duse_system_zlib=1 \
-Duse_system_libpng=1 \
-Duse_system_ffmpeg=0 \
-Duse_system_yasm=1 \
-Duse_system_libevent=1 \
-Duse_system_ssl=0 \
$([ "${CARCH}" == 'i686' ] && echo '-Ddisable_sse2=1')
### Build
make chrome chrome_sandbox BUILDTYPE=Release
}
package() {
cd ${srcdir}/chromium-${pkgver}
install -m 0755 -D out/Release/chrome ${pkgdir}/usr/lib/chromium/chromium
install -m 4555 -o root -g root -D out/Release/chrome_sandbox \
${pkgdir}/usr/lib/chromium/chromium-sandbox
install -m 0644 -D out/Release/chrome.pak \
${pkgdir}/usr/lib/chromium/chrome.pak
install -m 0644 -D out/Release/resources.pak \
${pkgdir}/usr/lib/chromium/resources.pak
install -m 0755 -D out/Release/libffmpegsumo.so \
${pkgdir}/usr/lib/chromium/libffmpegsumo.so
# these links are only needed when building with system ffmpeg
# ln -s /usr/lib/libavcodec.so.52 ${pkgdir}/usr/lib/chromium/
# ln -s /usr/lib/libavformat.so.52 ${pkgdir}/usr/lib/chromium/
# ln -s /usr/lib/libavutil.so.50 ${pkgdir}/usr/lib/chromium/
cp -a out/Release/locales out/Release/resources \
${pkgdir}/usr/lib/chromium/
find ${pkgdir}/usr/lib/chromium/ -name '*.d' -type f -delete
install -m 0644 -D out/Release/chrome.1 \
${pkgdir}/usr/share/man/man1/chromium.1
install -m 0644 -D ${srcdir}/chromium.desktop \
${pkgdir}/usr/share/applications/chromium.desktop
for size in 16 22 24 32 48 64 128 256; do
install -m 0644 -D \
chrome/app/theme/chromium/product_logo_${size}.png \
${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png
done
install -m 0755 -D ${srcdir}/chromium.sh ${pkgdir}/usr/bin/chromium
install -m 0644 -D LICENSE ${pkgdir}/usr/share/licenses/chromium/LICENSE
}
# vim:set sw=2 sts=2 et:
|