Ticket #33160: Portfile

File Portfile, 1.7 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-urwid
7version             1.1
8categories                      python
9platforms           darwin
10license                         GPL-2
11maintainers                     nomaintainer
12description                     Binary file explorer using Hachoir and urwid libraries
13long_description        hachoir-urwid is a binary file explorer based on Hachoir library to parse the \
14                                        files. Using this tool you can exactly know the meaning of each bit/byte of \
15                                        your files. With direction keys, you can navigate in the field tree. The \
16                                        key h will disable human display and switch to raw display. It is sometime \
17                                        useful when you would like to compare hexadecimal data and Hachoir reprensentation.
18
19homepage                        http://pypi.python.org/pypi/hachoir-urwid/1.1
20master_sites            http://pypi.python.org/packages/source/h/hachoir-urwid/
21distname            hachoir-urwid-${version}
22
23checksums                       md5     71957e421578168093fd6ba1f0e64e34 \
24                                        sha256  95161ccc0708818958e974fde4d395ddf181cc05e92839e2c6aff1a8cac40681
25
26depends_lib             port:python27 \
27                                        port:py27-hachoir-core \
28                                        port:py27-hachoir-parser \
29                                        port:py27-urwid
30
31livecheck.type      regex
32livecheck.url       http://pypi.python.org/packages/source/h/hachoir-urwid/
33livecheck.regex     {hachoir-urwid-(\d+(?:\.\d+)*)\.tar\.gz}
34
35configure.python    ${prefix}/bin/python2.7
36set python_prefix  ${frameworks_dir}/Python.framework/Versions/2.7
37configure.pre_args-delete  --prefix=${prefix}
38configure.pre_args-append  --prefix=${python_prefix}
39configure.args-append      --includedir=${python_prefix}/include/python2.7
40
41build {}