41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# Template file for 'opera'
|
|
pkgname=opera
|
|
version=42.0.2393.94
|
|
revision=2
|
|
only_for_archs="i686 x86_64"
|
|
hostmakedepends="freetype-devel"
|
|
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
|
|
checksum=bea99f2ef234a4eca05af4ef21489baa53eb062cf407628e524242b53dec88fb
|
|
else
|
|
_debarch=i386
|
|
checksum=f02ea31cdddf37cf3ee1ebb0a35b0e3063e624e6988d50b10eae918de3f116c8
|
|
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
|
|
if [ "${XBPS_TARGET_MACHINE}" = "x86_64" ]; then
|
|
vcopy usr/lib/x86_64-linux-gnu usr/lib
|
|
else
|
|
vcopy usr/lib/i386-linux-gnu/opera usr/lib
|
|
fi
|
|
vcopy usr/share /usr/share
|
|
vlicense usr/share/doc/opera-stable/copyright
|
|
ln -sf /usr/lib/libfreetype.so.6 ${DESTDIR}/usr/lib/opera/libfreetype.so.6
|
|
}
|