Ticket #35830: Portfile

File Portfile, 881 bytes (added by gorticus (Jason Mitchell), 12 years ago)

v2

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=portfile:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           github 1.0
6PortGroup           python 1.0
7
8github.setup        llvmpy llvmpy 0.8.2
9fetch.type          git
10
11name                py-llvm
12categories-append   devel
13license             {Permissive BSD}
14maintainers         maiar.org:jason-macports openmaintainer
15description         Python bindings for LLVM
16long_description    llvmpy is a Python wrapper around the llvm C++ library \
17                    which allows simple access to compiler tools.
18
19platforms           darwin
20supported_archs     noarch
21
22python.versions     27
23python.default_version  27
24
25if {${subport} != ${name}} {
26    depends_build-append   port:py${python.version}-distribute \
27                           port:llvm-3.1
28
29}