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 | PortSystem 1.0 |
---|
4 | PortGroup python27 1.0 |
---|
5 | |
---|
6 | name py27-hachoir-metadata |
---|
7 | version 1.3.3 |
---|
8 | categories python |
---|
9 | platforms darwin |
---|
10 | license GPL-2 |
---|
11 | maintainers nomaintainer |
---|
12 | description hachoir-metadata extracts metadata from multimedia files |
---|
13 | long_description hachoir-metadata extracts metadata from multimedia files: \ |
---|
14 | music, picture, video, but also archives. It supports most common file formats: \ |
---|
15 | \ |
---|
16 | Program: \ |
---|
17 | exe \ |
---|
18 | Archives: \ |
---|
19 | bzip2, gzip, zip, tar \ |
---|
20 | Video: \ |
---|
21 | ASF format (WMV video), AVI, Matroska (MKV), WebM video, Quicktime (MOV), \ |
---|
22 | Ogg/Theora, Real media (RM) \ |
---|
23 | Audio: \ |
---|
24 | MPEG audio/MP3, WAV, Sun/NeXT audio, Ogg/Vorbis (OGG), MIDI, AIFF, AIFC, \ |
---|
25 | Real audio (RA) \ |
---|
26 | Image: \ |
---|
27 | bmp, cur, emf, ico, gif, jpg/jpeg, pcx, png, tga, tiff, wmf, xcf \ |
---|
28 | Misc: \ |
---|
29 | Torrent |
---|
30 | |
---|
31 | homepage http://pypi.python.org/pypi/hachoir-metadata |
---|
32 | master_sites http://pypi.python.org/packages/source/h/hachoir-metadata/hachoir-metadata-1.3.3.tar.gz#md5=26e04a2395205d31469fc2d6935055a9 |
---|
33 | distname hachoir-metadata-${version} |
---|
34 | |
---|
35 | checksums md5 26e04a2395205d31469fc2d6935055a9 \ |
---|
36 | sha256 ec403f13a44e2cf3d26001f8f440cdc4329a316a4c971035944bfadacc90eb3c |
---|
37 | |
---|
38 | depends_lib port:python27 \ |
---|
39 | port:py27-hachoir-core \ |
---|
40 | port:py27-hachoir-parser |
---|
41 | |
---|
42 | livecheck.type regex |
---|
43 | livecheck.url http://pypi.python.org/pypi/hachoir-metadata |
---|
44 | livecheck.regex {hachoir-metadata-(\d+(?:\.\d+)*)\.tar\.gz} |
---|
45 | |
---|
46 | configure.python ${prefix}/bin/python2.7 |
---|
47 | set python_prefix ${frameworks_dir}/Python.framework/Versions/2.7 |
---|
48 | configure.pre_args-delete --prefix=${prefix} |
---|
49 | configure.pre_args-append --prefix=${python_prefix} |
---|
50 | configure.args-append --includedir=${python_prefix}/include/python2.7 |
---|
51 | |
---|
52 | build {} |
---|