1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name arora |
---|
7 | version 0.11.0 |
---|
8 | categories www |
---|
9 | platforms darwin |
---|
10 | maintainers strasweb.fr:rudloff openmaintainer |
---|
11 | |
---|
12 | license GPL2 |
---|
13 | |
---|
14 | description Cross Platform WebKit Browser |
---|
15 | |
---|
16 | long_description Arora is a lightweight cross-platform web browser. It's free (as in free speech and free beer). Arora runs on Linux, embedded Linux, FreeBSD, Mac OS X, Windows, Haiku, and any other platforms supported by the Qt toolkit. |
---|
17 | |
---|
18 | homepage http://code.google.com/p/arora/ |
---|
19 | master_sites http://arora.googlecode.com/files/ |
---|
20 | |
---|
21 | checksums sha1 480cfd7482cccbb7ece866fa10afe9acace29b31 \ |
---|
22 | rmd160 c8b010d5e540c8ee3a0604c4d24c19c8b8653798 |
---|
23 | |
---|
24 | depends_lib port:qt4-mac \ |
---|
25 | port:openssl |
---|
26 | |
---|
27 | configure { |
---|
28 | system "cd ${worksrcpath} && qmake" |
---|
29 | } |
---|
30 | destroot { |
---|
31 | xinstall -d ${destroot}${prefix}/Applications/Arora.app/Contents/MacOS/ |
---|
32 | xinstall ${worksrcpath}/Arora.app/Contents/MacOS/Arora ${destroot}${prefix}/Applications/Arora.app/Contents/MacOS/Arora |
---|
33 | xinstall -d ${destroot}${prefix}/Applications/Arora.app/Contents/Resources/ |
---|
34 | xinstall ${worksrcpath}/Arora.app/Contents/Resources/browser.icns ${destroot}${prefix}/Applications/Arora.app/Contents/Resources/browser.icns |
---|
35 | xinstall ${worksrcpath}/Arora.app/Contents/Info.plist ${destroot}${prefix}/Applications/Arora.app/Contents/Info.plist |
---|
36 | } |
---|