blob: d7a206df0229fb8e0e824ace7f8e8f1445983ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: un navigateur web léger basé sur webkit
# URL: http://code.google.com/p/arora/
# Maintainer: NuTyX core team
# Packager: guy_
# Depends on: webkit, qt
name=arora
version=0.10.2
release=2
source=(http://arora.googlecode.com/files/$name-$version.tar.gz
arora-0.10.2_qt_4.7_build_fix.patch)
build() {
cd $name-$version
patch -Np1 -i ../arora-0.10.2_qt_4.7_build_fix.patch
qmake PREFIX="/usr"
make
make INSTALL_ROOT=$PKG install
}
|