From eeb0c45e888f433fcbd116a0c9974d2ce8b08b13 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sat, 18 Mar 2017 16:00:11 +0000 Subject: [PATCH] added extra/audacity --- extra/audacity/PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 extra/audacity/PKGBUILD diff --git a/extra/audacity/PKGBUILD b/extra/audacity/PKGBUILD new file mode 100644 index 000000000..5226e84e0 --- /dev/null +++ b/extra/audacity/PKGBUILD @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Eric BĂ©langer + +# ALARM: Kevin Mihelich +# - configure with --disable-sse + +pkgname=audacity +pkgver=2.1.3 +pkgrel=1 +pkgdesc="A program that lets you manipulate digital audio waveforms" +arch=('i686' 'x86_64') +url="http://audacityteam.org" +license=('GPL') +depends=('libmad' 'libid3tag' 'wxgtk' 'lame' 'lilv' 'soundtouch' + 'ffmpeg' 'vamp-plugin-sdk' 'sbsms' 'portsmf' 'desktop-file-utils') +makedepends=('cmake' 'python2') +options=('!makeflags') +source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.zip) +sha1sums=('616097deb29d3883ca2d858fcefda1550cdfbdf2') + +build() { + cd audacity-Audacity-${pkgver} + autoreconf -vi # use system libraries + ./configure --prefix=/usr --with-libsamplerate --disable-sse + make +} + +package() { + cd audacity-Audacity-${pkgver} + make DESTDIR="${pkgdir}" install +}