Ticket #37567: Portfile

File Portfile, 1.1 KB (added by Jakker (Jaap Akkerhuis), 11 years ago)

Portfile for this port (pu-pyaudio

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
6
7name                    py-pyaudio
8version                 0.2.7
9categories              python
10platforms               darwin
11maintainers             NLnetLabs.nl:jaap
12license                 MIT
13supported_archs         noarch
14
15description             PyAudio provides Python bindings for PortAudio
16long_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
21homepage                http://people.csail.mit.edu/hubert/pyaudio/
22master_sites            http://people.csail.mit.edu/hubert/pyaudio/packages/
23distname                pyaudio-${version}
24
25checksums               md5 41eaa5a027e2a68ac29237018985dfbb \
26                        rmd160 d4536504f99a0dcd90e6b6d1c7ce694e946febe5 \
27                        sh256 7807cf937df3652f64b014b9f579c308cf87057d32ed4250a6b28844e2b56287
28
29python.versions         26 27 32
30
31depends_lib     port:portaudio
32
33python.link_binaries    no
34
35pre-build {
36        reinplace "s|portaudio-v19|${prefix}]|g" ${worksrcpath}/setup.py
37}