1 | PortSystem 1.0 |
---|
2 | name libebml |
---|
3 | version 0.6.2 |
---|
4 | revision 0 |
---|
5 | categories textproc |
---|
6 | maintainers pguyot@kallisys.net |
---|
7 | description EBML (Extensible Binary Meta Language), sort of binary version of XML. |
---|
8 | long_description \ |
---|
9 | EBML (Extensible Binary Meta Language), a binary derivative of \ |
---|
10 | XML. EBML enables the Matroska Development Team to gain \ |
---|
11 | significant advantages in terms of future format \ |
---|
12 | extensibility, without breaking file support in old parsers. |
---|
13 | homepage http://www.matroska.org/ |
---|
14 | platforms darwin |
---|
15 | master_sites http://matroska.free.fr/downloads/libebml/ |
---|
16 | checksums md5 3fab6e7ade7e86daae2fce79d63f2b70 |
---|
17 | |
---|
18 | # No configuration step. |
---|
19 | configure {} |
---|
20 | |
---|
21 | # The linux Makefile will do it. |
---|
22 | post-extract { |
---|
23 | cd "${worksrcpath}/make" |
---|
24 | system "cp -r linux darwin" |
---|
25 | } |
---|
26 | |
---|
27 | # The makefile is not at the root of the archive. |
---|
28 | # Also, PREFIX is spelled prefix |
---|
29 | build { |
---|
30 | cd "${worksrcpath}/make/darwin" |
---|
31 | system "make prefix=${prefix}" |
---|
32 | } |
---|
33 | destroot { |
---|
34 | cd "${worksrcpath}/make/darwin" |
---|
35 | system "make prefix=${destroot}${prefix} install" |
---|
36 | } |
---|