gtk/audacity/PKGBUILD

28 lines
837 B
Bash
Raw Normal View History

2013-04-30 01:18:38 +08:00
pkgname=audacity
2017-12-08 22:10:43 +08:00
pkgver=2.2.1
2017-03-18 15:50:25 +08:00
pkgrel=1
2013-04-30 01:18:38 +08:00
pkgdesc="A program that lets you manipulate digital audio waveforms"
arch=('x86_64')
2017-12-08 22:10:43 +08:00
url="https://www.audacityteam.org/"
2013-04-30 01:18:38 +08:00
license=('GPL')
2017-11-07 07:44:35 +08:00
depends=('libmad' 'libid3tag' 'wxgtk' 'lame' 'lilv' 'soundtouch' 'libsamplerate' 'libnotify'
'ffmpeg' 'vamp-plugin-sdk' 'portsmf' 'desktop-file-utils' 'jack') # sbsms - needs unreleased version
2017-02-12 12:46:46 +08:00
makedepends=('python2' 'cmake' 'portaudio')
2013-04-30 01:18:38 +08:00
options=('!makeflags')
install="${pkgname}.install"
2017-12-08 22:10:43 +08:00
source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.tar.gz)
md5sums=('0b07c3bf0eb41072704f03b291f08796')
2013-04-30 01:18:38 +08:00
build() {
2017-11-07 07:44:35 +08:00
cd ${pkgname}-Audacity-${pkgver}
2017-02-12 12:46:46 +08:00
./configure --prefix=/usr \
--with-libsamplerate \
--enable-shared
2013-04-30 01:18:38 +08:00
make
}
package() {
2017-11-07 07:44:35 +08:00
cd ${pkgname}-Audacity-${pkgver}
2013-04-30 01:18:38 +08:00
make DESTDIR="${pkgdir}" install
}