git » portaudio.git » main » tree

[main] / PKGBUILD

# Maintainer: David Runge <dvzrv@archlinux.org>
# Contributor: Lukas Fleischer <lfleischer@archlinux.org>
# Contributor: Eric Belanger <eric@archlinux.org>
# Contributor: Darwin Bautista <djclue917@gmail.com>
# Contributor: Bob Finch <w9ya@qrparci.net>

pkgname=portaudio
pkgver=19.7.0
pkgrel=3
epoch=1
pkgdesc='A free, cross-platform, open source, audio I/O library.'
arch=(x86_64 'armv7h')
url="https://github.com/portaudio/portaudio/"
license=(MIT)
depends=(
  gcc-libs
  glibc
)
makedepends=(
  alsa-lib
  cmake
#  jack
  git
  pulseaudio
  autoconf-archive
)
provides=(
  libportaudio.so
  libportaudiocpp.so
)
#source=($url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz)

source=("git+https://github.com/portaudio/portaudio.git#commit=0b9f8b2f172290c0569e74467520bc961b8b0d18")

prepare() {
  cd $pkgname
  (
   cd bindings/cpp
   autoreconf -fiv
  )
  autoreconf -fiv
}

build() {
  local configure_options=(
    --prefix=/usr
    --enable-cxx
  )

  cd $pkgname
  ./configure "${configure_options[@]}"
  # build breaks with multiple jobs when building C++ bindings:
  # https://github.com/PortAudio/portaudio/issues/540
  make -j1
}

package() {
  depends+=(
    alsa-lib libasound.so
#    jack libjack.so
  )

  cd $pkgname
  make DESTDIR="$pkgdir" install
  install -vDm 644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
  install -vDm 644 README.* -t "$pkgdir/usr/share/doc/$pkgname/"
}
sha256sums=('ea093f74ebb0f438f91bce08c4a1bf0810641d18db3fb0eed4eafd96c97de2d2')