51 lines
1.4 KiB
Bash
51 lines
1.4 KiB
Bash
# Template file for 'vivaldi'
|
|
pkgname=vivaldi
|
|
version=2.10.1745.23
|
|
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=70037c3f2555dda3f331557b9be1b1b1036bec0533cff88d9a5931af95557eb6
|
|
else
|
|
_debarch=i386
|
|
checksum=1a5a2fa6ba0cdf2ef30fff281153c3fc5f026193c0a5bb8c616682327d4b76da
|
|
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
|
|
tar 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
|
|
}
|