PKGBUILDs/extra/audacity/PKGBUILD

44 lines
1.2 KiB
Bash
Raw Normal View History

2013-03-22 22:06:20 +00:00
# $Id: PKGBUILD 176352 2013-01-30 20:25:49Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - added --disable-sse to configure
2013-10-24 02:35:41 +00:00
# - disable soundtouch on v5
2013-03-22 22:06:20 +00:00
pkgname=audacity
2014-09-30 01:19:30 +00:00
pkgver=2.0.6
pkgrel=1
2013-03-22 22:06:20 +00:00
pkgdesc="A program that lets you manipulate digital audio waveforms"
arch=('i686' 'x86_64')
url="http://audacity.sourceforge.net/"
license=('GPL')
2014-09-30 01:19:30 +00:00
depends=('libmad' 'libid3tag' 'wxgtk2.8' 'lame' 'jack' 'soundtouch'
'ffmpeg' 'desktop-file-utils')
makedepends=('cmake' 'python2')
2013-03-22 22:06:20 +00:00
options=('!makeflags')
install=audacity.install
2014-09-30 01:19:30 +00:00
source=(http://downloads.sourceforge.net/project/audacity/audacity/${pkgver}/${pkgname}-minsrc-${pkgver}.tar.xz
audacity-ffmpeg.patch)
sha1sums=('9fd664a71684e7e07472a48fa716f89c87b1929d'
'3fa0a06501ae525515f3e46ef9d20aa1a9ea8921')
2013-03-22 22:06:20 +00:00
2014-09-30 01:19:30 +00:00
prepare() {
cd ${pkgname}-src-${pkgver}
patch -p1 -i "${srcdir}/audacity-ffmpeg.patch"
}
2013-03-22 22:06:20 +00:00
build() {
2013-09-08 20:04:54 +00:00
cd ${pkgname}-src-${pkgver}
2013-10-24 02:35:41 +00:00
[[ $CARCH == 'arm' ]] && CONFIG="--without-soundtouch"
2014-09-30 01:19:30 +00:00
WX_CONFIG=/usr/bin/wx-config-2.8 ./configure --prefix=/usr --disable-sse $CONFIG
2013-03-22 22:06:20 +00:00
make
}
package() {
2013-09-08 20:04:54 +00:00
cd ${pkgname}-src-${pkgver}
2013-03-22 22:06:20 +00:00
make DESTDIR="${pkgdir}" install
}