Ticket #33158: Portfile

File Portfile, 1.9 KB (added by m.haller@…, 12 years ago)

Portfile

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$
3PortSystem          1.0
4PortGroup           python27 1.0
5
6name                py27-hachoir-metadata
7version             1.3.3
8categories                      python
9platforms           darwin
10license                         GPL-2
11maintainers                     nomaintainer
12description                     hachoir-metadata extracts metadata from multimedia files
13long_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
31homepage                        http://pypi.python.org/pypi/hachoir-metadata
32master_sites            http://pypi.python.org/packages/source/h/hachoir-metadata/hachoir-metadata-1.3.3.tar.gz#md5=26e04a2395205d31469fc2d6935055a9
33distname            hachoir-metadata-${version}
34
35checksums                       md5     26e04a2395205d31469fc2d6935055a9 \
36                                        sha256  ec403f13a44e2cf3d26001f8f440cdc4329a316a4c971035944bfadacc90eb3c
37
38depends_lib             port:python27 \
39                                        port:py27-hachoir-core \
40                                        port:py27-hachoir-parser
41
42livecheck.type      regex
43livecheck.url       http://pypi.python.org/pypi/hachoir-metadata
44livecheck.regex     {hachoir-metadata-(\d+(?:\.\d+)*)\.tar\.gz}
45
46configure.python    ${prefix}/bin/python2.7
47set python_prefix  ${frameworks_dir}/Python.framework/Versions/2.7
48configure.pre_args-delete  --prefix=${prefix}
49configure.pre_args-append  --prefix=${python_prefix}
50configure.args-append      --includedir=${python_prefix}/include/python2.7
51
52build {}