gtk/audacity/PKGBUILD
2018-05-25 00:39:08 +02:00

28 lines
837 B
Bash

pkgname=audacity
pkgver=2.2.2
pkgrel=2
pkgdesc="A program that lets you manipulate digital audio waveforms"
arch=('x86_64')
url="https://www.audacityteam.org/"
license=('GPL')
depends=('libmad' 'libid3tag' 'wxgtk' 'lame' 'lilv' 'soundtouch' 'libsamplerate' 'libnotify'
'ffmpeg' 'vamp-plugin-sdk' 'portsmf' 'desktop-file-utils' 'jack') # sbsms - needs unreleased version
makedepends=('python2' 'cmake' 'portaudio')
options=('!makeflags')
install="${pkgname}.install"
source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.tar.gz)
md5sums=('0389b57584a41994d92951b2388dfbcd')
build() {
cd ${pkgname}-Audacity-${pkgver}
./configure --prefix=/usr \
--with-libsamplerate \
--enable-shared
make
}
package() {
cd ${pkgname}-Audacity-${pkgver}
make DESTDIR="${pkgdir}" install
}