Commits
Perry E. Metzger authored ca2a3e2f685
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-pyaudio |
7 7 | set my_name PyAudio |
8 8 | version 0.2.11 |
9 9 | categories-append audio |
10 10 | platforms darwin |
11 - | maintainers NLnetLabs.nl:jaap |
11 + | maintainers {@Jakker NLnetLabs.nl:jaap} openmaintainer |
12 12 | license MIT |
13 13 | |
14 14 | description PyAudio provides Python bindings for PortAudio |
15 15 | long_description PyAudio provides Python bindings for PortAudio, \ |
16 16 | the cross-platform audio I/O library. With PyAudio, \ |
17 17 | you can easily use Python to play and record audio \ |
18 18 | on a variety of platforms. |
19 19 | |
20 20 | homepage http://people.csail.mit.edu/hubert/pyaudio/ |
21 21 | |
22 22 | master_sites pypi:P/PyAudio/ |
23 23 | |
24 24 | distname ${my_name}-${version} |
25 25 | |
26 - | checksums md5 7e4c88139284033f67b4336c74eda3b8 \ |
27 - | rmd160 7a6bb88f56622555e77eb799e4ee74ff970b6e92 \ |
28 - | sha256 93bfde30e0b64e63a46f2fd77e85c41fd51182a4a3413d9edfaf9ffaa26efb74 |
26 + | checksums rmd160 7a6bb88f56622555e77eb799e4ee74ff970b6e92 \ |
27 + | sha256 93bfde30e0b64e63a46f2fd77e85c41fd51182a4a3413d9edfaf9ffaa26efb74 \ |
28 + | size 37428 |
29 29 | |
30 30 | worksrcdir PyAudio-${version} |
31 31 | |
32 32 | python.versions 27 34 35 36 37 |
33 33 | |
34 34 | if {${name} ne ${subport}} { |
35 35 | depends_build-append \ |
36 36 | port:py${python.version}-setuptools \ |
37 37 | port:py${python.version}-sphinx |
38 38 | |