Ticket #33163: Portfile

File Portfile, 2.0 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-mat
7version             0.2.2
8categories                      python
9platforms           darwin
10license                         GPL-2
11maintainers                     nomaintainer
12description                     Metadata Anonymisation Toolkit (CLI + GTK-GUI)
13long_description        Metadata Anonymisation Toolkit is a toolbox composed of a GUI application, \
14                                        a CLI application, and a library. The toolkit removes metadata from your files, \
15                                        it does not anonymise their content, nor handle watermarking, steganography, \
16                                        or any overly customized metadata field/system. \
17                                        \
18                                        Supported formats so far: \
19                                                Portable Network Graphics (.png) \
20                                                JPEG (.jpg, .jpeg, ...) \
21                                                Open Documents (.odt, .odx, .ods, ...) \
22                                                Office OpenXML (.docx, .pptx, .xlsx, ...) \
23                                                Portable Document Fileformat (.pdf) \
24                                                Tape ARchives (.tar, .tar.bz2, .tar.gz, ...) \
25                                                Zip (.zip) \
26                                                MPEG Audio (.mp3, .mp2) \
27                                                Ogg Vorbis (.ogg, ...) \
28                                                Free Lossless Audio Codec (.flac) \
29                                                Torrent (.torrent)
30
31homepage                        https://mat.boum.org/
32master_sites            https://mat.boum.org/files/
33distname            mat-${version}
34
35checksums                       md5     3616b4e37a4e7c899253fa5659109686 \
36                                        sha256  1c894e86da7402738736842a3a973efb3487844b3d35229b4ab295d611c226a2
37
38depends_lib             port:python27 \
39                                        port:py27-hachoir-core \
40                                        port:py27-hachoir-parser \
41                                        port:p5.12-image-exiftool \
42                                        port:py27-poppler \
43                                        port:py27-cairo \
44                                        port:py27-mutagen
45                                       
46livecheck.type      regex
47livecheck.url       https://mat.boum.org/files/
48livecheck.regex     {mat-(\d+(?:\.\d+)*)\.tar\.gz}
49
50configure.python    ${prefix}/bin/python2.7
51set python_prefix  ${frameworks_dir}/Python.framework/Versions/2.7
52configure.pre_args-delete  --prefix=${prefix}
53configure.pre_args-append  --prefix=${python_prefix}
54configure.args-append      --includedir=${python_prefix}/include/python2.7
55
56build {}