Ticket #19539: Portfile

File Portfile, 1.1 KB (added by leeharple@…, 15 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4
5name                udis86
6version             1.7
7categories          devel
8maintainers         nomaintainer
9description         Minimalistic disassembler library for x86 and AMD64 (x86-64)
10
11long_description    Udis86 is an easy-to-use minimalistic disassembler library \
12                    (libudis86) for the x86 and AMD64 (x86-64) range of \
13                    instruction set architectures. The primary intent of the \
14                    design and development of udis86 is to aid software \
15                    development projects that entail binary code analysis.
16
17homepage            http://udis86.sourceforge.net
18platforms           darwin
19master_sites        sourceforge
20
21checksums           md5 e279108e10f774e6c3af83caa18f5dc3 \
22                    sha1 1a9949e33024542a24a948af5d9cbee34ff64695 \
23                    rmd160 42f39d8c2c6941913e18a85777d157825e6d1d33
24                   
25universal_variant   no
26
27platform powerpc {
28    pre-fetch {
29        return -code error "${name} is not supported on the PPC architecture."
30    }
31}