38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
# Template file for 'vivaldi'
|
|
pkgname=vivaldi
|
|
version=1.7.735.46
|
|
revision=1
|
|
_release=1
|
|
only_for_archs="i686 x86_64"
|
|
short_desc="An 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
|
|
nopie=yes
|
|
|
|
if [ "${XBPS_TARGET_MACHINE}" = "x86_64" ];then
|
|
_debarch=amd64
|
|
checksum=bb15313f9d7f17bc135b5a41df0aaf83b1bdc1867bf3fe4fce5757a0bbadebbe
|
|
else
|
|
_debarch=i386
|
|
checksum=0aada8e99560c60d0a49ee3ff8ef1c5e38e2ae8bf1f7aa59b72b5871ad64b1c6
|
|
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
|
|
cd ${wrksrc}
|
|
tar xfJ data.tar.xz
|
|
}
|
|
|
|
do_install() {
|
|
vcopy opt/ /opt
|
|
vcopy usr /
|
|
for res in 24 48 64; do
|
|
vinstall opt/vivaldi/product_logo_${res}.png 0644 \
|
|
/usr/share/icons/hicolor/${res}x${res}/apps vivaldi.png
|
|
done
|
|
ln -sf /opt/vivaldi/vivaldi ${DESTDIR}/usr/bin/vivaldi-stable
|
|
}
|