50 lines
1.4 KiB
Bash
50 lines
1.4 KiB
Bash
# Template file for 'vivaldi'
|
|
pkgname=vivaldi
|
|
version=2.11.1811.47
|
|
revision=1
|
|
_release=1
|
|
archs="i686 x86_64"
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
|
short_desc="Advanced browser made with the power user in mind"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
# EULA: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/
|
|
# Privacy Policy: https://vivaldi.com/privacy/browser/
|
|
license="Proprietary"
|
|
homepage="https://vivaldi.com"
|
|
repository=nonfree
|
|
restricted=yes
|
|
nostrip=yes
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
_debarch=amd64
|
|
checksum=02c4e33bd7673afa9ea055a9bebda79c8326139964013c67afc6f80ec036dc99
|
|
else
|
|
_debarch=i386
|
|
checksum=c96f55e9cbe9f1ad94fbf14616f8046bf86dee99ec607627274a0e9f05e4bc1b
|
|
fi
|
|
|
|
distfiles="https://downloads.vivaldi.com/stable/vivaldi-stable_${version}-${_release}_${_debarch}.deb"
|
|
|
|
do_extract() {
|
|
ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/vivaldi-stable_${version}-${_release}_${_debarch}.deb
|
|
bsdtar xf data.tar.xz --exclude={./etc,./opt/vivaldi/cron}
|
|
}
|
|
|
|
do_install() {
|
|
vinstall usr/share/applications/vivaldi-stable.desktop 0644 \
|
|
usr/share/applications
|
|
|
|
vmkdir opt
|
|
vcopy opt/vivaldi opt
|
|
|
|
vmkdir usr/bin
|
|
ln -s /opt/vivaldi/vivaldi ${DESTDIR}/usr/bin/vivaldi-stable
|
|
|
|
# suid sandbox
|
|
chmod 4755 ${DESTDIR}/opt/vivaldi/vivaldi-sandbox
|
|
|
|
for res in 16 22 24 32 48 64 128 256; do
|
|
vinstall opt/vivaldi/product_logo_${res}.png 0644 \
|
|
usr/share/icons/hicolor/${res}x${res}/apps vivaldi.png
|
|
done
|
|
}
|