# $Id: PKGBUILD 176352 2013-01-30 20:25:49Z eric $ # Maintainer: Eric BĂ©langer # ALARM: Kevin Mihelich # - added --disable-sse to configure pkgname=audacity pkgver=2.0.4 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' 'wxgtk' 'lame' 'hicolor-icon-theme' 'desktop-file-utils' 'jack' 'soundtouch' 'ffmpeg-compat') makedepends=('cmake') options=('!makeflags') install=audacity.install source=(http://audacity.googlecode.com/files/${pkgname}-minsrc-${pkgver}.tar.xz) sha1sums=('4c1a42137cef598e3d83829ca7c22dba62d215be') build() { cd ${pkgname}-src-${pkgver} PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig" \ ./configure --prefix=/usr --disable-sse make } package() { cd ${pkgname}-src-${pkgver} make DESTDIR="${pkgdir}" install }