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