Ticket #32106: Portfile

File Portfile, 1.2 KB (added by coax@…, 12 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            fribidi2
7version         0.19.2
8categories      textproc
9license         LGPL-2.1+
10maintainers     nomaintainer
11platforms       darwin
12description     Free Implementation of the Unicode Bidirectional Algorithm
13
14long_description \
15    The FriBidi library implements the algorithm described in the \
16    \"Unicode Standard Annex #9, The Bidirectional Algorithm\", \
17    available at http://www.unicode.org/unicode/reports/tr9/.
18
19conflicts       fribidi
20
21homepage        http://fribidi.org/
22master_sites    ${homepage}download/
23distname        fribidi-${version}
24
25checksums       md5 626db17d2d99b43615ad9d12500f568a \
26                sha1 3889469d96dbca3d8522231672e14cca77de4d5e \
27                rmd160 4fafb4b3140bbbcf4c2c58c714b02db2d71e5491
28
29post-destroot {
30    set docdir ${prefix}/share/doc/${distname}
31    xinstall -d ${destroot}${docdir}
32    xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog \
33        NEWS README THANKS TODO ${destroot}${docdir}
34}
35
36livecheck.type  regex
37livecheck.url   ${master_sites}
38livecheck.regex fribidi-(0\.19\.\d+)\.tar\.gz