dedf123135
Closes: #11791 [via git-merge-pr] Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
# Template file for 'vivaldi'
|
|
pkgname=vivaldi
|
|
version=1.14.1077.60
|
|
revision=1
|
|
_release=1
|
|
only_for_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>"
|
|
license="Proprietary"
|
|
homepage="https://vivaldi.com"
|
|
repository="nonfree"
|
|
restricted=yes
|
|
nostrip=yes
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
_debarch=amd64
|
|
checksum=3352630a043b7ea7f769dfe8355378a72339bc9d98331b108c108b29eabbafbe
|
|
else
|
|
_debarch=i386
|
|
checksum=e8861873cc7634f2611d304e300df63eb80382cf2821d21991e0822c696df596
|
|
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,./usr/share/{doc,gnome-control-center,menu}}
|
|
}
|
|
|
|
do_install() {
|
|
vinstall usr/share/applications/vivaldi-stable.desktop 0644 \
|
|
/usr/share/applications
|
|
|
|
vcopy opt/ /opt
|
|
vcopy usr /
|
|
|
|
# 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
|
|
}
|