42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Template file for 'opera'
|
|
pkgname=opera
|
|
version=45.0.2552.812
|
|
revision=1
|
|
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=39ba2340cfc5752db90ed1118681cdfc07657df061eaace49ac0a1b91492c175
|
|
else
|
|
_debarch=i386
|
|
checksum=82566f9fd4e76c0adf765c4d6ba194ae670298ab77ca7bcf6f0aed21393f1062
|
|
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
|
|
}
|