diff options
author | Matthias Hentges <oe@hentges.net> | 2008-01-04 15:24:54 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2008-01-04 15:24:54 +0000 |
commit | c55bd008a7c396088a70227a85f8fe8395aa71b9 (patch) | |
tree | 130b221f44303bb953ad7621ad145923d5891b77 /packages/portaudio | |
parent | 6b3b57dfa59ae7b222455468b9618a74a65e6c96 (diff) |
portaudio: Add a working .bb of the V19 API
Diffstat (limited to 'packages/portaudio')
-rw-r--r-- | packages/portaudio/portaudio-v19_20071207.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/portaudio/portaudio-v19_20071207.bb b/packages/portaudio/portaudio-v19_20071207.bb new file mode 100644 index 0000000000..f8de2d741d --- /dev/null +++ b/packages/portaudio/portaudio-v19_20071207.bb @@ -0,0 +1,27 @@ +#! /bin/sh +# +# Copyright Matthias Hentges <devel@hentges.net> (c) 2008 +# License: MIT (see http://www.opensource.org/licenses/mit-license.php +# for a copy of the license) +# +# Filename: portaudio-v19_20071207.bb +# Date: 20080104 (YMD) + +DESCRIPTION = "portaudio is a portable cross-platform Audio API" +SECTION = "base" +LICENSE = "GPL" + +PR = "r0" + +###################################################################################### + +SRC_URI = "http://www.portaudio.com/archives/pa_stable_v19_${PV}.tar.gz" + +S = "${WORKDIR}/portaudio" + +inherit autotools + +do_stage() { + install -m 0644 ${S}/include/portaudio.h ${STAGING_INCDIR}/ + oe_libinstall -C lib -so libportaudio ${STAGING_LIBDIR}/ +} |