extra/audacity to 2.1.1-1

This commit is contained in:
Kevin Mihelich 2015-11-24 03:02:40 +00:00
parent 229f9e6247
commit 80369d8637

View file

@ -6,38 +6,38 @@
# - disable soundtouch on v5
pkgname=audacity
pkgver=2.1.0
pkgver=2.1.1
pkgrel=1
pkgdesc="A program that lets you manipulate digital audio waveforms"
arch=('i686' 'x86_64')
url="http://audacity.sourceforge.net/"
url="http://audacityteam.org"
license=('GPL')
depends=('libmad' 'libid3tag' 'wxgtk2.8' 'lame' 'lilv' 'soundtouch'
'ffmpeg' 'vamp-plugin-sdk' 'sbsms' 'portsmf' 'desktop-file-utils')
makedepends=('cmake' 'python2')
options=('!makeflags')
install=audacity.install
source=(http://downloads.sourceforge.net/project/audacity/audacity/${pkgver}/${pkgname}-minsrc-${pkgver}.tar.xz
source=(https://github.com/audacity/audacity/archive/Audacity-${pkgver}.zip
audacity-ffmpeg.patch)
sha1sums=('a53bce0276240bb56f2e3fd1bf235a4ef688caa3'
sha1sums=('3ff019e02a8ef9d712166dd1b466c494102a859a'
'5f1733a3802bcec7d9b54cb3ec8d7d81fc38fc61')
prepare() {
cd ${pkgname}-minsrc-${pkgver}
cd audacity-Audacity-${pkgver}
patch -p1 -i "${srcdir}/audacity-ffmpeg.patch"
}
build() {
cd ${pkgname}-minsrc-${pkgver}
cd audacity-Audacity-${pkgver}
[[ $CARCH == 'arm' ]] && CONFIG="--without-soundtouch"
WX_CONFIG=/usr/bin/wx-config-2.8 ./configure --prefix=/usr --with-libsamplerate --disable-sse $CONFIG
WX_CONFIG=/usr/bin/wx-config-2.8 ./configure --prefix=/usr --with-libsamplerate
make
}
package() {
cd ${pkgname}-minsrc-${pkgver}
cd audacity-Audacity-${pkgver}
make DESTDIR="${pkgdir}" install
}