Ticket #52453: Portfile

File Portfile, 1.2 KB (added by bket, 8 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
5PortGroup           python 1.0
6
7name                py-llfuse
8version             1.1.1
9categories-append   devel fuse
10platforms           darwin
11license             LGPL-2+
12maintainers         hydroxide.nl:bjorn.ketelaars openmaintainer
13
14description         Python bindings for the low-level FUSE API
15long_description    Python-LLFUSE is a set of Python bindings for the low \
16                    level FUSE API.
17
18distname            llfuse-${version}
19use_bzip2           yes
20
21homepage            https://pypi.python.org/pypi/llfuse/
22master_sites        pypi:l/llfuse
23
24checksums           rmd160  96c560c5710bc5dd12c41ac64588a7b1a163cd26 \
25                    sha256  1b84b1152ae461e66ecc526d0de71eaec086c587e97d1dda93d620b16a92db6c
26
27python.versions     27 34 35
28
29if {${name} ne ${subport}} {
30    depends_build-append    port:pkgconfig \
31                            port:py${python.version}-setuptools
32    depends_lib-append      port:osxfuse
33
34    livecheck.type          none
35} else {
36    livecheck.type          pypi
37}