Ticket #29467: Portfile

File Portfile, 1.5 KB (added by rudloff@…, 13 years ago)
Line 
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
4PortSystem          1.0
5
6name                arora
7version             0.11.0
8categories          www
9platforms           darwin
10maintainers         strasweb.fr:rudloff openmaintainer
11
12license             GPL2
13
14description         Cross Platform WebKit Browser
15
16long_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
18homepage            http://code.google.com/p/arora/
19master_sites        http://arora.googlecode.com/files/
20
21checksums           sha1    480cfd7482cccbb7ece866fa10afe9acace29b31 \
22                    rmd160  c8b010d5e540c8ee3a0604c4d24c19c8b8653798
23
24depends_lib         port:qt4-mac \
25                    port:openssl
26
27configure {
28    system "cd ${worksrcpath} && qmake"
29}
30destroot {
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}