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-urwid |
---|
7 | version 1.1 |
---|
8 | categories python |
---|
9 | platforms darwin |
---|
10 | license GPL-2 |
---|
11 | maintainers nomaintainer |
---|
12 | description Binary file explorer using Hachoir and urwid libraries |
---|
13 | long_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 | |
---|
19 | homepage http://pypi.python.org/pypi/hachoir-urwid/1.1 |
---|
20 | master_sites http://pypi.python.org/packages/source/h/hachoir-urwid/ |
---|
21 | distname hachoir-urwid-${version} |
---|
22 | |
---|
23 | checksums md5 71957e421578168093fd6ba1f0e64e34 \ |
---|
24 | sha256 95161ccc0708818958e974fde4d395ddf181cc05e92839e2c6aff1a8cac40681 |
---|
25 | |
---|
26 | depends_lib port:python27 \ |
---|
27 | port:py27-hachoir-core \ |
---|
28 | port:py27-hachoir-parser \ |
---|
29 | port:py27-urwid |
---|
30 | |
---|
31 | livecheck.type regex |
---|
32 | livecheck.url http://pypi.python.org/packages/source/h/hachoir-urwid/ |
---|
33 | livecheck.regex {hachoir-urwid-(\d+(?:\.\d+)*)\.tar\.gz} |
---|
34 | |
---|
35 | configure.python ${prefix}/bin/python2.7 |
---|
36 | set python_prefix ${frameworks_dir}/Python.framework/Versions/2.7 |
---|
37 | configure.pre_args-delete --prefix=${prefix} |
---|
38 | configure.pre_args-append --prefix=${python_prefix} |
---|
39 | configure.args-append --includedir=${python_prefix}/include/python2.7 |
---|
40 | |
---|
41 | build {} |
---|