Ticket #15568: Portfile-py25-macholib-devel

File Portfile-py25-macholib-devel, 1.1 KB (added by david@…, 16 years ago)

Portfile for py25-macholib-devel

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
3PortSystem          1.0
4PortGroup           python25 1.0
5
6name                py25-macholib-devel
7version             1.2
8categories-append   devel
9maintainers         openmaintainer
10description         Mach-O header analysis and editing
11long_description \
12    macholib can be used to analyze and edit Mach-O headers, the executable \
13    format used by Mac OS X. \
14    It is typically used as a dependency analysis tool, and also to rewrite \
15    dylib references in Mach-O headers to be @executable_path relative. \
16    Though this tool targets a platform specific file format, it is pure \
17    python code that is platform and endian independent.
18
19platforms       darwin
20
21homepage        http://undefined.org/python/#macholib
22fetch.type      svn
23svn.url         http://svn.pythonmac.org/macholib/macholib/trunk/
24worksrcdir      trunk
25
26depends_lib-append  port:py25-altgraph
27
28livecheck.check regex
29livecheck.url   http://svn.pythonmac.org/macholib/macholib/trunk/macholib/__init__.py
30livecheck.regex {__version__ = "([0-9\.]+)"}