Ticket #51702: Portfile.2

File Portfile.2, 943 bytes (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 550574d1302e661864458052fc69788ff1440aab \
19                    sha256 a5422d42781e81d1c439d3118a918a8fec14a75577a1b0e2d0da5943b583a354
20
21python.versions 27
22python.default_version 27
23
24if {${name} ne ${subport}} {
25    depends_lib-append  port:libusb
26}
27