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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py25-macholib-devel |
---|
7 | version 1.2 |
---|
8 | categories-append devel |
---|
9 | maintainers openmaintainer |
---|
10 | description Mach-O header analysis and editing |
---|
11 | long_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 | |
---|
19 | platforms darwin |
---|
20 | |
---|
21 | homepage http://undefined.org/python/#macholib |
---|
22 | fetch.type svn |
---|
23 | svn.url http://svn.pythonmac.org/macholib/macholib/trunk/ |
---|
24 | worksrcdir trunk |
---|
25 | |
---|
26 | depends_lib-append port:py25-altgraph |
---|
27 | |
---|
28 | livecheck.check regex |
---|
29 | livecheck.url http://svn.pythonmac.org/macholib/macholib/trunk/macholib/__init__.py |
---|
30 | livecheck.regex {__version__ = "([0-9\.]+)"} |
---|