Ticket #51702: Portfile.5

File Portfile.5, 1.0 KB (added by anett_as@…, 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
6PortGroup           github 1.0
7
8github.setup        vpelletier python-libusb1 1.5.0
9
10name                py-libusb1
11license             LGPL-2.1+
12categories-append   devel
13maintainers         nomaintainer
14description         libusb-1.0 python wrapper
15long_description    Pure-python wrapper for libusb-1.0. Supports all transfer types, both in synchronous and asynchronous mode.
16homepage            https://github.com/vpelletier/python-libusb1
17platforms           darwin
18checksums           rmd160 351fb613f25a1184905f341aa0f2e638f7ea581d \
19                    sha256 056d23e81a6210f92ba186dfd996a9ef76f32d8091772099b9b91638f8c30c28
20
21python.versions 27 34 35
22python.default_version 27
23
24if {${name} ne ${subport}} {
25    depends_lib-append      lib:libusb-1.0:libusb
26    depends_build-append    port:py${python.version}-setuptools
27}
28