void-packages/srcpkgs/google-earth-pro/template
Jason Manley b99e229812 google-earth-pro: update to 7.3.3.7721.
Closes: #23743 [via git-merge-pr]
2020-10-03 16:44:47 -07:00

57 lines
2.1 KiB
Bash

# Template file for 'google-earth-pro'
pkgname=google-earth-pro
version=7.3.3.7721
revision=1
archs="x86_64"
depends="alsa-lib desktop-file-utils fontconfig glu gst-plugins-base1
hicolor-icon-theme libSM libXi libXrender libcups libproxy nss"
short_desc="Explore the far reaches of the world"
maintainer="Jason Manley <jason@jasondavid.tv>"
license="custom:Google"
homepage="https://www.google.com/earth/index.html"
distfiles="https://dl.google.com/linux/earth/deb/pool/main/g/${pkgname}-stable/${pkgname}-stable_${version}-r0_amd64.deb"
checksum=db3f4b224426789ffb8d76a5f64126f8a2822bc42d30da162ac05d039047a152
repository=nonfree
restricted=yes
nostrip=yes
post_fetch() {
$XBPS_FETCH_CMD https://www.google.com/intl/ALL/policies/terms/index.html>Google-Terms-of-Service.html \
https://www.google.com/help/terms_maps.html>Google-Earth-Additional-Terms-of-Service.html \
https://www.google.com/help/legalnotices_maps.html>Legal-Notices-for-Google-Earth-and-Google-Earth-APIs.html \
https://www.google.com/intl/ALL/policies/privacy/index.html>Google-Privacy-Policy.html
rm {index.html,legalnotices_maps.html,terms_maps.html}
}
do_extract() {
ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}-r0_amd64.deb
bsdtar xf data.tar.xz
}
do_install() {
vmkdir opt/google
vcopy opt/google/earth opt/google
vmkdir usr/bin
ln -s /opt/google/earth/pro/googleearth ${DESTDIR}/usr/bin/${pkgname}
vinstall opt/google/earth/pro/${pkgname}.desktop 644 usr/share/applications
for i in 16 22 24 32 48 64 128 256; do
vinstall opt/google/earth/pro/product_logo_${i}.png 644 \
usr/share/icons/hicolor/${i}x${i}/apps ${pkgname}.png
done
for i in ${XBPS_SRCDISTDIR}/${pkgname}-${version}/Google-Terms-of-Service.html \
${XBPS_SRCDISTDIR}/${pkgname}-${version}/Google-Earth-Additional-Terms-of-Service.html \
${XBPS_SRCDISTDIR}/${pkgname}-${version}/Legal-Notices-for-Google-Earth-and-Google-Earth-APIs.html \
${XBPS_SRCDISTDIR}/${pkgname}-${version}/Google-Privacy-Policy.html; do
vlicense ${i}
done
# Fix Search
sed -i '/googleearth-bin/s/^/LC_NUMERIC=en_US.UTF-8 /' \
${DESTDIR}/opt/google/earth/pro/googleearth
}