blob: 525d4797888a601d5dce0a791aea3930c88bc059 (
plain)
1 # Description: Lightweight web browser with news, e-mail and IRC
2 # URL: http://www.opera.com
3 # Maintainer: Simone Rota, sip at crux dot nu
4 # Packager: Olle Gustafsson, ogg at linux dot se
5 # Depends on: qt4
6
7 name=opera
8 version=9.60
9 release=1
10 source=(http://ftp.ntua.gr/pub/www/Opera/linux/960/final/en/i386/opera-$version.gcc4-qt4.i386.tar.bz2)
11
12 build() {
13 cd $name-$version-*
14
15 sed -i s:share/man:man: install.sh
16 yes n | ./install.sh --prefix=$PKG/usr
17 install -D -m 644 etc/opera6rc $PKG/etc/opera6rc
18 install -D -m 644 etc/opera6rc.fixed $PKG/etc/opera6rc.fixed
19
20 sed -i -e "s|$PKG||g" $PKG/usr/bin/opera
21 rm -rf $PKG/usr/share/doc
22 }
|