diff options
| author | Philipp Zabel <philipp.zabel@gmail.com> | 2005-09-22 14:08:21 +0000 |
|---|---|---|
| committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-22 14:08:21 +0000 |
| commit | 89dd14a2a673ab49867fa1e815a9238b9ea183eb (patch) | |
| tree | 69fb61ccc6029696336b95b5f6705ba133f2f5ef /packages/rtaudio | |
| parent | 58c854e12629358f21447f5a031acc6e41086537 (diff) | |
| parent | 879f9f39cbb2d061ac85ad8a7ebce71b0aa6760b (diff) | |
merge of 42b169fabe3df723d70a1502561f5848f1287a98
and a7038c05fef716879570b18652c839a87a2a65f8
Diffstat (limited to 'packages/rtaudio')
| -rw-r--r-- | packages/rtaudio/.mtn2git_empty | 0 | ||||
| -rw-r--r-- | packages/rtaudio/librtaudio_3.0.1.bb | 29 | ||||
| -rw-r--r-- | packages/rtaudio/rtaudio-tests_3.0.1.bb | 26 |
3 files changed, 55 insertions, 0 deletions
diff --git a/packages/rtaudio/.mtn2git_empty b/packages/rtaudio/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/rtaudio/.mtn2git_empty diff --git a/packages/rtaudio/librtaudio_3.0.1.bb b/packages/rtaudio/librtaudio_3.0.1.bb new file mode 100644 index 0000000000..62ed46860b --- /dev/null +++ b/packages/rtaudio/librtaudio_3.0.1.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "RtAudio is a set of C++ classes which provide a common API \ +for realtime audio input/output across Linux (native ALSA, JACK, and OSS), \ +Macintosh OS X, SGI, and Windows (DirectSound and ASIO) operating systems." +SECTION = "libs" +LICENSE = "rtaudio" +HOMEPAGE = "http://www.music.mcgill.ca/~gary/rtaudio" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +DEPENDS = "alsa-lib" +PR = "r0" + +SRC_URI = "http://music.mcgill.ca/~gary/rtaudio/release/rtaudio-${PV}.tar.gz" +S = "${WORKDIR}/rtaudio-${PV}" + +inherit qmake qt3x11 + +do_configure_prepend() { + qmake -project -t lib -nopwd *.cpp *.h +} + +EXTRA_QMAKEVARS_POST = "CONFIG=console CONFIG+=thread DEFINES+=__LINUX_OSS__ DEFINES+=__LINUX_ALSA__ LIBS+=-lasound" + +do_stage() { + install -m 0644 *.h ${STAGING_INCDIR} + oe_libinstall -so librtaudio-3.0.1 ${STAGING_LIBDIR} +} + +do_install() { + oe_libinstall -so librtaudio-3.0.1 ${D}${libdir} +} diff --git a/packages/rtaudio/rtaudio-tests_3.0.1.bb b/packages/rtaudio/rtaudio-tests_3.0.1.bb new file mode 100644 index 0000000000..53752b73c0 --- /dev/null +++ b/packages/rtaudio/rtaudio-tests_3.0.1.bb @@ -0,0 +1,26 @@ +include librtaudio_${PV}.bb + +inherit autotools + +EXTRA_OECONF = "--with-alsa --with-oss" +EXTRA_OEMAKE = "-e" +export CC = "${CXX}" +CFLAGS += "-I${S}" +export LIBRARY = "-lasound -lpthread ${LDFLAGS}" + +do_compile() { + oe_runmake -C tests +} + +do_stage() { + : +} + +do_install() { + install -d ${D}${bindir} + for binary in `find tests -perm 0755 -type f` + do + install -m 0755 $binary ${D}${bindir} + done +} + |
