mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
community/audacity to 2.4.0-1
This commit is contained in:
parent
6b0658c25a
commit
ec1e258e45
1 changed files with 20 additions and 12 deletions
|
@ -6,26 +6,24 @@
|
|||
# - explicitly link v5/v6 with libatomic
|
||||
|
||||
pkgname=audacity
|
||||
pkgver=2.3.3
|
||||
pkgrel=2
|
||||
pkgver=2.4.0
|
||||
pkgrel=1
|
||||
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=('expat' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'gtk3' 'libFLAC.so'
|
||||
'libFLAC++.so' 'libid3tag' 'libjack.so' 'liblilv-0.so' 'libmad' 'libogg'
|
||||
'libsndfile' 'libsoxr' 'libsuil-0.so' 'libtwolame.so' 'libvamp-hostsdk.so'
|
||||
'libvorbis.so' 'libvorbisenc.so' 'libvorbisfile.so' 'portsmf' 'soundtouch'
|
||||
'wxgtk3')
|
||||
makedepends=('cmake' 'ffmpeg' 'lv2')
|
||||
# upstream hard codes/vendors portaudio/portmidi
|
||||
# https://github.com/audacity/audacity/issues/522
|
||||
depends=('expat' 'gcc-libs' 'gdk-pixbuf2' 'glibc' 'libmad'
|
||||
'libsoxr' 'soundtouch' 'wxgtk3')
|
||||
makedepends=('alsa-lib' 'cmake' 'ffmpeg' 'flac' 'glib2' 'gtk3' 'jack' 'lame'
|
||||
'libid3tag' 'libogg' 'libsndfile' 'libvorbis' 'lilv' 'lv2' 'portsmf' 'suil'
|
||||
'twolame' 'vamp-plugin-sdk')
|
||||
optdepends=('ffmpeg: additional import/export capabilities')
|
||||
source=("https://github.com/${pkgname}/${pkgname}/archive/Audacity-${pkgver}.tar.gz")
|
||||
sha512sums=('0789d5bc27933c688b8c99e0d9d9ca65f3b0c59cf74a235feee094a1815bdb59a32a4f50d2938b8fb9d72b0c5ba88451d02f90c5163931774a2088463562c5ef')
|
||||
sha512sums=('a9f926e3a539c3a052249a7a1e968b629a8a807fa2c74d940bd18df5744c36cb4f18b4b78c56fe7fbabce12ffa732cb413418a512cf91bb5c3c111766c5ba0e3')
|
||||
|
||||
prepare() {
|
||||
mv -v "${pkgname}-Audacity-${pkgver}" "${pkgname}-${pkgver}"
|
||||
|
@ -35,6 +33,11 @@ prepare() {
|
|||
|
||||
build() {
|
||||
cd "${pkgname}-${pkgver}"
|
||||
# the cmake setup is still more complicated and error-prone than the
|
||||
# autotools setup:
|
||||
# https://github.com/audacity/audacity/issues/519
|
||||
# https://github.com/audacity/audacity/issues/520
|
||||
# https://github.com/audacity/audacity/issues/521
|
||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LIBS="-latomic"
|
||||
WX_CONFIG=wx-config-gtk3 LIBS=$LIBS ./configure --prefix="/usr" \
|
||||
--with-libsndfile="system" \
|
||||
|
@ -57,6 +60,11 @@ build() {
|
|||
}
|
||||
|
||||
package() {
|
||||
depends+=('libFLAC.so' 'libFLAC++.so' 'libasound.so' 'libgdk-3.so'
|
||||
'libglib-2.0.so' 'libgobject-2.0.so' 'libgtk-3.so' 'libid3tag.so'
|
||||
'libjack.so' 'liblilv-0.so' 'libogg.so' 'libsndfile.so' 'libsuil-0.so'
|
||||
'libtwolame.so' 'libvamp-hostsdk.so' 'libvorbis.so' 'libvorbisenc.so'
|
||||
'libvorbisfile.so' 'libportSMF.so')
|
||||
cd "${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue