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-pyaudio |
---|
8 | version 0.2.7 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | maintainers NLnetLabs.nl:jaap |
---|
12 | license MIT |
---|
13 | supported_archs noarch |
---|
14 | |
---|
15 | description PyAudio provides Python bindings for PortAudio |
---|
16 | long_description PyAudio provides Python bindings for PortAudio, \ |
---|
17 | the cross-platform audio I/O library. With PyAudio, \ |
---|
18 | you can easily use Python to play and record audio \ |
---|
19 | on a variety of platforms. |
---|
20 | |
---|
21 | homepage http://people.csail.mit.edu/hubert/pyaudio/ |
---|
22 | master_sites http://people.csail.mit.edu/hubert/pyaudio/packages/ |
---|
23 | distname pyaudio-${version} |
---|
24 | |
---|
25 | checksums md5 41eaa5a027e2a68ac29237018985dfbb \ |
---|
26 | rmd160 d4536504f99a0dcd90e6b6d1c7ce694e946febe5 \ |
---|
27 | sh256 7807cf937df3652f64b014b9f579c308cf87057d32ed4250a6b28844e2b56287 |
---|
28 | |
---|
29 | python.versions 26 27 32 |
---|
30 | |
---|
31 | depends_lib port:portaudio |
---|
32 | |
---|
33 | python.link_binaries no |
---|
34 | |
---|
35 | pre-build { |
---|
36 | reinplace "s|portaudio-v19|${prefix}]|g" ${worksrcpath}/setup.py |
---|
37 | } |
---|