From 873665024ebfaa761ee49b508a79db7178aeb778 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sat, 4 Jun 2022 15:08:04 +0100 Subject: added gnupg --- repo/portaudio/portaudio.xibuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 repo/portaudio/portaudio.xibuild (limited to 'repo/portaudio/portaudio.xibuild') diff --git a/repo/portaudio/portaudio.xibuild b/repo/portaudio/portaudio.xibuild new file mode 100644 index 0000000..2c9b2ef --- /dev/null +++ b/repo/portaudio/portaudio.xibuild @@ -0,0 +1,32 @@ +#!/bin/sh + +NAME="portaudio" +DESC="A cross-platform, open-source C language library for real-time audio input and output" + +MAKEDEPS=" alsa-lib autoconf automake jack libtool linux-headers" + +PKG_VER=19.7.0 +SOURCE="https://github.com/PortAudio/portaudio/archive/v$PKG_VER/portaudio-v$PKG_VER.tar.gz" + +ADDITIONAL=" +portaudio-audacity.patch +portaudio-pkgconfig-alsa.patch +" + +prepare() { + apply_patches +} + +build() { + ./configure \ + --prefix=/usr \ + --disable-static \ + --with-jack \ + --with-alsa \ + --enable-cxx + make -j1 +} + +package() { + make -j1 DESTDIR="$PKG_DEST" install +} -- cgit v1.2.1