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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-llfuse |
---|
8 | version 1.1.1 |
---|
9 | categories-append devel fuse |
---|
10 | platforms darwin |
---|
11 | license LGPL-2+ |
---|
12 | maintainers hydroxide.nl:bjorn.ketelaars openmaintainer |
---|
13 | |
---|
14 | description Python bindings for the low-level FUSE API |
---|
15 | long_description Python-LLFUSE is a set of Python bindings for the low \ |
---|
16 | level FUSE API. |
---|
17 | |
---|
18 | distname llfuse-${version} |
---|
19 | use_bzip2 yes |
---|
20 | |
---|
21 | homepage https://pypi.python.org/pypi/llfuse/ |
---|
22 | master_sites pypi:l/llfuse |
---|
23 | |
---|
24 | checksums rmd160 96c560c5710bc5dd12c41ac64588a7b1a163cd26 \ |
---|
25 | sha256 1b84b1152ae461e66ecc526d0de71eaec086c587e97d1dda93d620b16a92db6c |
---|
26 | |
---|
27 | python.versions 27 34 35 |
---|
28 | |
---|
29 | if {${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 | } |
---|