mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
# $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
|
|
# - disable soundtouch on v5
|
|
|
|
pkgname=audacity
|
|
pkgver=2.1.0
|
|
pkgrel=1
|
|
pkgdesc="A program that lets you manipulate digital audio waveforms"
|
|
arch=('i686' 'x86_64')
|
|
url="http://audacity.sourceforge.net/"
|
|
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
|
|
audacity-ffmpeg.patch)
|
|
sha1sums=('a53bce0276240bb56f2e3fd1bf235a4ef688caa3'
|
|
'5f1733a3802bcec7d9b54cb3ec8d7d81fc38fc61')
|
|
|
|
prepare() {
|
|
cd ${pkgname}-minsrc-${pkgver}
|
|
patch -p1 -i "${srcdir}/audacity-ffmpeg.patch"
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}-minsrc-${pkgver}
|
|
|
|
[[ $CARCH == 'arm' ]] && CONFIG="--without-soundtouch"
|
|
|
|
WX_CONFIG=/usr/bin/wx-config-2.8 ./configure --prefix=/usr --with-libsamplerate --disable-sse $CONFIG
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-minsrc-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|