diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-02-09 10:32:20 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2013-02-09 10:32:20 -0300 |
commit | 6cc893589a6bd208f2b7711f985e17df7a6df816 (patch) | |
tree | c41cb07e4e88c4eff5bc05e44b86b860f96654b8 /extra/audacity/PKGBUILD | |
parent | 5995e8be41750a8ac397ac358f5c2bedca3a4d1e (diff) | |
parent | f0ab416208be17c176b9430a3537f05b5c653aec (diff) |
Merge branch 'master' of gparabola:abslibre-mips64el
Diffstat (limited to 'extra/audacity/PKGBUILD')
-rw-r--r-- | extra/audacity/PKGBUILD | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/extra/audacity/PKGBUILD b/extra/audacity/PKGBUILD index 74c7edce7..65441f8cd 100644 --- a/extra/audacity/PKGBUILD +++ b/extra/audacity/PKGBUILD @@ -1,15 +1,16 @@ -# $Id: PKGBUILD 175820 2013-01-22 06:29:20Z eric $ +# $Id: PKGBUILD 176352 2013-01-30 20:25:49Z eric $ # Maintainer: Eric Bélanger <eric@archlinux.org> pkgname=audacity pkgver=2.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="A program that lets you manipulate digital audio waveforms" arch=('i686' 'x86_64' 'mips64el') 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) @@ -17,17 +18,8 @@ sha1sums=('72e634711fb96aac9df445e75e16e12e00c047e6') build() { cd "${srcdir}/${pkgname}-src-${pkgver}" - - [ "$CARCH" = "mips64el" ] && extra="--disable-sse" - - WX_CONFIG=/usr/bin/wx-config PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig" \ - ./configure --prefix=/usr --docdir=/usr/share/doc/audacity \ - --with-portaudio --with-libsamplerate \ - --without-libresample --with-libmad \ - --with-ffmpeg --with-id3tag --with-libflac \ - --with-vorbis --with-libexpat \ - --with-libsndfile --with-soundtouch \ - --enable-unicode --without-taglib $extra + PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig" \ + ./configure --prefix=/usr --docdir=/usr/share/doc/audacity make } |