mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
added community/jack_capture
This commit is contained in:
parent
4f552f21f3
commit
483da327c4
1 changed files with 38 additions and 0 deletions
38
community/jack_capture/PKGBUILD
Normal file
38
community/jack_capture/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: David Runge <dave@sleepmap.de>
|
||||
# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de>
|
||||
# Contributor: speps <speps at aur dot archlinux dot org>
|
||||
# Contributor: hm_b <holger@music-nerds.net>
|
||||
# Contributor: Leslie P. Polzer <polzer@stardawn.org>
|
||||
# Contributor: Philipp Überbacher <murks at lavabit dot com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - explicitly link v5/v6 with libatomic
|
||||
|
||||
pkgname=jack_capture
|
||||
pkgver=0.9.73
|
||||
pkgrel=5
|
||||
pkgdesc="Simple command line tool to record JACK audio output to a file"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/kmatheussen/jack_capture"
|
||||
license=('GPL2')
|
||||
depends=('jack' 'lame' 'liblo')
|
||||
optdepends=('meterbridge: levels monitor'
|
||||
'zenity: gtk2 gui')
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kmatheussen/${pkgname}/archive/${pkgver}.tar.gz")
|
||||
sha512sums=('eecab2e26d5e83b65adf386d6fb38f2d9169cf1574e462ec455367f7d98f4f4d5a9d0766b9c572cfdcb43c55ae914bb8a2222267842c9912e2afe13c1f7b0038')
|
||||
|
||||
build() {
|
||||
cd "${pkgname}-${pkgver}"
|
||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LDFLAGS+=" -latomic"
|
||||
make
|
||||
}
|
||||
|
||||
package(){
|
||||
cd "${pkgname}-${pkgver}"
|
||||
make PREFIX='/usr' DESTDIR="${pkgdir}" install
|
||||
# gtk2 gui
|
||||
install -vDm755 "${pkgname}_gui" "${pkgdir}/usr/bin/${pkgname}_gui"
|
||||
# doc
|
||||
install -vDm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue