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 fribidi2 |
---|
7 | version 0.19.2 |
---|
8 | categories textproc |
---|
9 | license LGPL-2.1+ |
---|
10 | maintainers nomaintainer |
---|
11 | platforms darwin |
---|
12 | description Free Implementation of the Unicode Bidirectional Algorithm |
---|
13 | |
---|
14 | long_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 | |
---|
19 | conflicts fribidi |
---|
20 | |
---|
21 | homepage http://fribidi.org/ |
---|
22 | master_sites ${homepage}download/ |
---|
23 | distname fribidi-${version} |
---|
24 | |
---|
25 | checksums md5 626db17d2d99b43615ad9d12500f568a \ |
---|
26 | sha1 3889469d96dbca3d8522231672e14cca77de4d5e \ |
---|
27 | rmd160 4fafb4b3140bbbcf4c2c58c714b02db2d71e5491 |
---|
28 | |
---|
29 | post-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 | |
---|
36 | livecheck.type regex |
---|
37 | livecheck.url ${master_sites} |
---|
38 | livecheck.regex fribidi-(0\.19\.\d+)\.tar\.gz |
---|