Ticket #25554: Portfile

File Portfile, 1.1 KB (added by yves@…, 10 years ago)

Here is a portfile for the current version, worked very well for me with flak +aqua

Line 
1# $Id: Portfile 123356 2014-08-08 17:33:44Z mf2k@macports.org $
2
3PortSystem 1.0
4name            dillo
5version         3.0.4
6categories      www
7maintainers     nomaintainer
8platforms       darwin
9description     Simple but very fast web browser
10long_description        \
11                Dillo is a multi-platform graphical web browser, known for its \
12                speed and small footprint, that is developed with a focus on \
13                personal security and privacy.
14
15
16use_bzip2       yes
17
18homepage        http://www.dillo.org/
19master_sites    ${homepage}/download/:source \
20                ${homepage}/Icons/:icon
21
22distfiles       ${distname}${extract.suffix}:source \
23                ProgramIcon48.png:icon
24checksums       ${distname}${extract.suffix} \
25                md5 c85aab6b840527e1dd71b220a1dcfbab \
26                ProgramIcon48.png \
27                md5 2ca5fb738b70051cac592acef3cb56e1
28extract.only ${distname}${extract.suffix}             
29
30depends_lib     lib:libfltk:fltk
31
32pre-destroot    { system "strip ${worksrcpath}/src/dillo" }
33post-destroot {
34    xinstall -d ${destroot}${prefix}/share/pixmaps
35    xinstall -m 644 ${distpath}/ProgramIcon48.png \
36        ${destroot}${prefix}/share/pixmaps/dillo.png
37}
38