42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Template file for 'opera'
|
|
pkgname=opera
|
|
version=42.0.2393.351
|
|
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=ca5017e3d7ee8c2e37632dd42a8e6cf8296deaa8a11a52d8fdb5e249c67cde82
|
|
else
|
|
_debarch=i386
|
|
checksum=8f0d8328d32346d6fe04a258a337e4917dcda54bd5baba8e63948ca1c44ea645
|
|
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
|
|
}
|