1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-09-19 12:03:18 +02:00

feat: google chrome

This commit is contained in:
Jozef Steinhübl 2024-03-29 11:13:36 +01:00
parent e351c5dafd
commit 425b2a9ddf
3 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1 @@
The current version of this EULA can be found at: https://www.google.com/intl/en/chrome/terms/

View file

@ -0,0 +1,33 @@
# Template file for 'google-chrome'
# Official template from https://github.com/void-linux/void-packages/blob/master/srcpkgs/google-chrome/template
pkgname=google-chrome
version=123.0.6312.58
revision=1
_channel=stable
archs="x86_64"
hostmakedepends="python3-html2text python3-setuptools"
depends="gtk+3"
short_desc="Attempt at creating a safer, faster, and more stable browser"
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
license="custom:chrome"
homepage="https://www.google.com/chrome/"
distfiles="https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-${_channel}_${version}-1_amd64.deb"
checksum=cfe502ef052c5805fb90f22093c4bdba35b69fa1e5529d26df31d3bec0224e9b
skiprdeps="/opt/google/chrome/libqt5_shim.so /opt/google/chrome/libqt6_shim.so"
nostrip=yes
do_install() {
vcopy etc /
vcopy opt /
vcopy usr /
# Remove unused icons
rm ${DESTDIR}/opt/google/chrome/*.xpm
# Remove the Debian/Ubuntu crontab
rm -rf ${DESTDIR}/etc
rm -rf ${DESTDIR}/opt/google/chrome/cron
vlicense "${FILESDIR}"/google-chrome-eula.md
}

View file

@ -0,0 +1,5 @@
# Call Google's version history API to get stable linux desktop releases
# that are still being served (endtime=none). Look for the 'version' in
# the JSON response.
site="https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases?filter=endtime=none"
pattern="\"version\": *\"\K[\d.]+(?=\")"