37 lines
1,014 B
Bash
37 lines
1,014 B
Bash
# Template file for 'opera'
|
|
pkgname=opera
|
|
version=41.0.2353.46
|
|
revision=1
|
|
only_for_archs="i686 x86_64"
|
|
depends="ffmpeg desktop-file-utils"
|
|
short_desc="Fast, secure, easy to use browser"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="Proprietary"
|
|
repository="nonfree"
|
|
homepage="http://www.opera.com/browser/"
|
|
nopie=yes
|
|
|
|
if [ "${XBPS_TARGET_MACHINE}" = "x86_64" ];then
|
|
_debarch=amd64
|
|
_platform=x86_64
|
|
checksum=b7cea184547a33391ad93a4fdb80e55518e6922ca657bea6cc3c3ff934f463d3
|
|
else
|
|
_debarch=i386
|
|
_platform=i386
|
|
checksum=06ed44aff1f08dd54a6391371cee9c184fa4fc6d0a7849191bfae7789491e2de
|
|
fi
|
|
|
|
distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/opera-stable_${version}_${_debarch}.deb"
|
|
|
|
do_extract() {
|
|
ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/opera-stable_${version}_${_debarch}.deb
|
|
cd ${wrksrc}
|
|
tar xfJ data.tar.xz
|
|
}
|
|
|
|
do_install() {
|
|
vbin ${FILESDIR}/opera
|
|
vcopy usr/lib/${_platform}-linux-gnu usr/lib
|
|
vcopy usr/share /usr/share
|
|
vlicense usr/share/doc/opera-stable/copyright
|
|
}
|