mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
59 lines
1.7 KiB
Bash
59 lines
1.7 KiB
Bash
# Maintainer: David Runge <dave@sleepmap.de>
|
|
# Contributor: Eric Bélanger <eric@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - configure with --disable-sse
|
|
# - explicitly link v5/v6 with libatomic
|
|
|
|
pkgname=audacity
|
|
pkgver=2.3.2
|
|
pkgrel=2
|
|
epoch=1
|
|
pkgdesc="A program that lets you manipulate digital audio waveforms"
|
|
arch=('x86_64')
|
|
url="https://audacityteam.org"
|
|
license=('GPL2' 'CCPL')
|
|
groups=('pro-audio')
|
|
# upstream enquired via mail about:
|
|
# vendors/requires older version of portaudio
|
|
# vendors/doesn't detect system version of portmidi
|
|
depends=('libid3tag' 'libmad' 'libsoxr' 'lilv' 'portsmf' 'soundtouch' 'suil'
|
|
'twolame' 'vamp-plugin-sdk' 'wxgtk3')
|
|
makedepends=('cmake' 'ffmpeg')
|
|
optdepends=('ffmpeg: additional import/export capabilities')
|
|
source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz")
|
|
sha512sums=('a59d6e9e974d5f78f5ca561e3bea31fc1b3e88f9ea60b2df7ce8bcec264d886f3fdc8f20030e11a86daff8ffeb735850b5e5f73c45fbef0bfcc58692423e7cd0')
|
|
|
|
prepare() {
|
|
mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
|
|
cd "${pkgname}-${pkgver}"
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LIBS="-latomic"
|
|
WX_CONFIG=wx-config-gtk3 LIBS=$LIBS ./configure --prefix="/usr" \
|
|
--with-libsndfile="system" \
|
|
--with-ffmpeg="system" \
|
|
--with-expat="system" \
|
|
--with-lame="system" \
|
|
--with-libsoxr="system" \
|
|
--with-portaudio \
|
|
--with-portmidi \
|
|
--with-libflac \
|
|
--with-libid3tag \
|
|
--with-libsamplerate \
|
|
--with-sbsms \
|
|
--with-soundtouch \
|
|
--with-libtwolame \
|
|
--with-libvorbis \
|
|
--with-lv2 \
|
|
--disable-sse
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|