25 lines
762 B
Plaintext
25 lines
762 B
Plaintext
# Description: Lightweight web browser with news, e-mail and IRC
|
|
# URL: http://www.opera.com
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Packager: Olle Gustafsson, ogg at linux dot se
|
|
# Depends on: qt4
|
|
|
|
name=opera
|
|
version=9.62
|
|
release=1
|
|
source=(http://ftp.heanet.ie/pub/opera/linux/962/final/en/i386/opera-$version.gcc4-qt4.i386.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version-*
|
|
|
|
sed -i s:share/man:man: install.sh
|
|
yes n | ./install.sh --prefix=$PKG/usr
|
|
install -D -m 644 etc/opera6rc $PKG/etc/opera6rc
|
|
install -D -m 644 etc/opera6rc.fixed $PKG/etc/opera6rc.fixed
|
|
|
|
sed -i -e "s|$PKG||g" $PKG/usr/bin/opera
|
|
rm -rf $PKG/usr/share/doc
|
|
find "$PKG/usr/share/opera/locale/" -mindepth 1 -maxdepth 1 -type d -not -name en -exec rm -r {} \;
|
|
|
|
}
|