diff src/portaudio.mk @ 666:e9828e3cf4f0

new packages: aubio, fftw, id3lib, liblo, libsamplerate and portaudio (by David García Garzón)
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 26 Jan 2010 15:50:50 +0100
parents
children 73d6b9460f74
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/portaudio.mk	Tue Jan 26 15:50:50 2010 +0100
@@ -0,0 +1,31 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html or doc/README for further information.
+
+# portaudio
+PKG             := portaudio
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 19_20071207
+$(PKG)_CHECKSUM := 3841453bb7be672a15b6b632ade6f225eb0a4efc
+$(PKG)_SUBDIR   := portaudio
+$(PKG)_FILE     := pa_stable_v$($(PKG)_VERSION).tar.gz
+$(PKG)_WEBSITE  := http://www.portaudio.com
+$(PKG)_URL      := http://www.portaudio.com/archives/$($(PKG)_FILE)
+$(PKG)_DEPS     := gcc directx
+
+define $(PKG)_UPDATE
+    wget -q -O- 'http://www.portaudio.com/download.html' | \
+    $(SED) -n 's,.*pa_stable_v\([0-9][^>]*\)\.tar.*,\1,p' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    cd '$(1)' && autoconf && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --with-host_os=mingw \
+        --with-winapi=directx \
+        --with-dxdir=$(PREFIX)/$(TARGET) \
+        --prefix='$(PREFIX)/$(TARGET)'
+    $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+    $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+endef