audacity/PKGBUILD

81 lines
1.5 KiB
Bash
Raw Normal View History

# Maintainer: Ong Yong Xin <ongyongxin2020+github AT gmail DOT com>
# Contributor: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Bernhard Landauer <oberon@manjaro.org>
2015-11-03 01:12:10 +09:00
# Contributor: Eric Bélanger <eric@archlinux.org>
pkgname=audacity-git
pkgver=3.1.0.beta.1.r28.g81bcb372d
pkgrel=1
2015-11-03 01:12:10 +09:00
pkgdesc="A program that lets you manipulate digital audio waveforms"
arch=(i686 x86_64)
url="https://www.audacityteam.org/"
license=(GPL2 CCPL)
groups=(pro-audio)
depends=(
alsa-lib
expat
flac
gtk3
libid3tag
libmad
libogg
libsndfile
libsoxr
libvorbis
libx11
lilv
lv2
portaudio
portsmf
soundtouch
suil
twolame
vamp-plugin-sdk
zlib
)
makedepends=(
cmake
conan
ffmpeg
gcc
git
gst-plugins-bad-libs
gstreamer
jack
libnotify
libsoup
nasm
sdl2
)
optdepends=('ffmpeg: additional import/export capabilities')
provides=(audacity)
conflicts=(audacity)
source=(
"git+https://github.com/audacity/audacity.git"
)
2021-09-01 00:11:17 +09:00
sha256sums=('SKIP')
2015-11-03 01:12:10 +09:00
pkgver() {
cd audacity
2020-06-28 03:42:11 +09:00
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | cut -d'.' -f2-
2020-05-22 04:23:57 +09:00
}
2015-11-03 01:12:10 +09:00
build() {
cd audacity
mkdir build && cd build
2021-09-01 00:11:17 +09:00
CC=gcc cmake \
2020-06-28 03:42:11 +09:00
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DwxBUILD_TOOLKIT:STRING=gtk3 \
-Daudacity_use_wxwidgets=local \
-Daudacity_use_ffmpeg:STRING=loaded \
-Daudacity_lib_preference=system \
2020-06-28 03:42:11 +09:00
..
cmake --build .
2015-11-03 01:12:10 +09:00
}
package() {
cd audacity/build
2015-11-03 01:12:10 +09:00
make DESTDIR="${pkgdir}" install
}