audacity/PKGBUILD

47 lines
1.3 KiB
Bash
Raw Normal View History

# Maintainer: 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
2021-06-19 03:51:08 +09:00
pkgver=3.0.2.r299.ge6e81399f
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 libx11 gtk3 expat libid3tag libogg libsndfile
libvorbis lilv lv2 portsmf suil libmad twolame vamp-plugin-sdk libsoxr soundtouch)
makedepends=(git cmake clang sdl2 libsoup libnotify gstreamer gst-plugins-bad-libs
2021-06-19 03:51:08 +09:00
ffmpeg jack nasm conan)
# can't find system lame portmidi
optdepends=('ffmpeg: additional import/export capabilities')
provides=(audacity)
conflicts=(audacity)
source=("git+https://github.com/audacity/audacity.git")
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() {
mkdir audacity/build
cd audacity/build
2020-06-28 03:42:11 +09:00
CC=clang cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DwxBUILD_TOOLKIT:STRING=gtk3 \
-Daudacity_use_wxwidgets=local \
2020-06-28 03:42:11 +09:00
audacity_use_ffmpeg:STRING=loaded \
..
2020-06-28 09:26:57 +09:00
cmake --build .
2020-06-28 03:42:11 +09:00
make .
2015-11-03 01:12:10 +09:00
}
package() {
cd audacity/build
2015-11-03 01:12:10 +09:00
make DESTDIR="${pkgdir}" install
}