Ticket #33157: Portfile.2

File Portfile.2, 1.4 KB (added by jul_bsd@…, 10 years ago)
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$
3
4PortSystem          1.0
5
6PortGroup           python 1.0
7
8name                py-hachoir-core
9version             1.3.3
10categories          python
11platforms           darwin
12license             GPL-2
13maintainers         nomaintainer
14description         Library represents binary file as a tree of Python objects
15long_description    Hachoir is a Python library used to represent of a binary file as a tree of \
16                    Python objects. Each object has a type, a value, an address, etc. The goal \
17                    is to be able to know the meaning of each bit in a file.
18
19homepage            http://pypi.python.org/pypi/hachoir-core
20master_sites        http://pypi.python.org/packages/source/h/hachoir-core/
21distname            hachoir-core-${version}
22checksums           rmd160  bc29a5433db1fe86fb90928be63b4af569f0d977 \
23                    sha256  ecf5d16eccc76b22071d6062e54edb67595f70d827644d3a6dff04289b4058df
24
25python.versions     24 25 26 27
26python.default_version 27
27
28livecheck.type      regex
29livecheck.url       http://pypi.python.org/packages/source/h/hachoir-core/
30livecheck.regex     {hachoir-core-(\d+(?:\.\d+)*)\.tar\.gz}
31
32variant devel description { use developper HEAD. CAN BREAK! } {
33    fetch.type           hg
34    hg.url               http://bitbucket.org/haypo/hachoir/
35}
36