gtk/audacity/PKGBUILD

26 lines
785 B
Bash
Raw Normal View History

2013-04-30 01:18:38 +08:00
pkgname=audacity
2018-10-04 08:41:25 +08:00
pkgver=2.3.0
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')
2018-10-04 08:41:25 +08:00
depends=('libid3tag' 'libmad' 'libsoxr' 'lilv' 'portsmf' 'soundtouch' 'suil' 'twolame' 'vamp-plugin-sdk' 'wxgtk')
makedepends=('cmake' 'ffmpeg')
optdepends=('ffmpeg: additional import/export capabilities')
source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz")
sha256sums=('37127f68dceeb5da08d008ec9373a65e2d5d0a9b937c808a5d7c3b88aa9e275e')
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
}