Merge pull request #4354 from CvH/9.2/chrome-fix

chrome: add missing lib
This commit is contained in:
Jernej Škrabec 2020-04-27 20:38:03 +02:00 committed by GitHub
commit 703c4ddaa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 9 deletions

View File

@ -1,3 +1,6 @@
102
- support for latest Chrome
101
- fix download url

View File

@ -3,7 +3,7 @@
PKG_NAME="chrome"
PKG_VERSION="1.0"
PKG_REV="101"
PKG_REV="102"
PKG_ARCH="x86_64"
PKG_LICENSE="Custom"
PKG_SITE="http://www.google.com/chrome"
@ -66,6 +66,7 @@ addon() {
# libxcb
cp -PL $(get_build_dir chrome-libxcb)/.$TARGET_NAME/src/.libs/libxcb.so.1 $ADDON_BUILD/$PKG_ADDON_ID/lib
cp -PL $(get_build_dir chrome-libxcb)/.$TARGET_NAME/src/.libs/libxcb-dri3.so.0 $ADDON_BUILD/$PKG_ADDON_ID/lib
# libXcomposite
cp -PL $(get_build_dir chrome-libXcomposite)/.$TARGET_NAME/src/.libs/libXcomposite.so.1 $ADDON_BUILD/$PKG_ADDON_ID/lib
@ -98,5 +99,4 @@ addon() {
# unclutter
cp -P $(get_build_dir unclutter)/.install_pkg/usr/bin/unclutter $ADDON_BUILD/$PKG_ADDON_ID/bin
}