mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
extra/chromium to 83.0.4103.61-2
This commit is contained in:
parent
571a68f350
commit
7e2bb20f4f
1 changed files with 18 additions and 8 deletions
|
@ -16,7 +16,7 @@ highmem=1
|
|||
|
||||
pkgname=chromium
|
||||
pkgver=83.0.4103.61
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
_launcher_ver=6
|
||||
pkgdesc="A web browser built for speed, simplicity, and security"
|
||||
arch=('x86_64')
|
||||
|
@ -211,7 +211,6 @@ build() {
|
|||
'enable_hangout_services_extension=true'
|
||||
'enable_widevine=true'
|
||||
'enable_nacl=false'
|
||||
'enable_swiftshader=false'
|
||||
"google_api_key=\"${_google_api_key}\""
|
||||
"google_default_client_id=\"${_google_default_client_id}\""
|
||||
"google_default_client_secret=\"${_google_default_client_secret}\""
|
||||
|
@ -261,16 +260,27 @@ package() {
|
|||
"$pkgdir/usr/share/applications/chromium.desktop" \
|
||||
"$pkgdir/usr/share/man/man1/chromium.1"
|
||||
|
||||
cp \
|
||||
out/Release/{chrome_{100,200}_percent,resources}.pak \
|
||||
out/Release/{*.bin,chromedriver} \
|
||||
"$pkgdir/usr/lib/chromium/"
|
||||
install -Dm644 -t "$pkgdir/usr/lib/chromium/locales" out/Release/locales/*.pak
|
||||
local toplevel_files=(
|
||||
chrome_100_percent.pak
|
||||
chrome_200_percent.pak
|
||||
resources.pak
|
||||
v8_context_snapshot.bin
|
||||
|
||||
# ANGLE
|
||||
libEGL.so
|
||||
libGLESv2.so
|
||||
|
||||
chromedriver
|
||||
)
|
||||
|
||||
if [[ -z ${_system_libs[icu]+set} ]]; then
|
||||
cp out/Release/icudtl.dat "$pkgdir/usr/lib/chromium/"
|
||||
toplevel_files+=(icudtl.dat)
|
||||
fi
|
||||
|
||||
cp "${toplevel_files[@]/#/out/Release/}" "$pkgdir/usr/lib/chromium/"
|
||||
install -Dm644 -t "$pkgdir/usr/lib/chromium/locales" out/Release/locales/*.pak
|
||||
install -Dm755 -t "$pkgdir/usr/lib/chromium/swiftshader" out/Release/swiftshader/*.so
|
||||
|
||||
for size in 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"
|
||||
|
|
Loading…
Reference in a new issue