forked from wwmm/easyeffects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD_AUR
39 lines (35 loc) · 1.26 KB
/
PKGBUILD_AUR
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: robertfoster
# Contributor: Bleuzen <[email protected]>
# Contributor: Filipe Laíns (FFY00) <[email protected]>
# Contributor: Wellington <[email protected]>
pkgname=easyeffects-git
pkgver=7.0.4.r136.gce892ece
pkgrel=1
pkgdesc='Audio Effects for Pipewire applications'
arch=(x86_64 i686 arm armv6h armv7h aarch64)
url='https://github.com/wwmm/easyeffects'
license=('GPL3')
depends=('fftw' 'fmt' 'gsl' 'gtk4' 'libadwaita' 'libbs2b' 'libebur128' 'libsamplerate' 'libsigc++-3.0' 'libsndfile'
'lilv' 'lv2' 'nlohmann-json' 'pipewire' 'rnnoise' 'soundtouch' 'speexdsp' 'tbb' 'zita-convolver')
makedepends=('appstream-glib' 'git' 'itstool' 'meson' 'ladspa')
optdepends=('calf: limiter, exciter, bass enhancer and others'
'lsp-plugins: equalizer, compressor, delay, loudness'
'zam-plugins: maximizer'
'mda.lv2: bass loudness'
'yelp: in-app help'
'libdeep_filter_ladspa: noise remover')
conflicts=("${pkgname%%-git}")
provides=("${pkgname%%-git}")
source=("${pkgname%%-git}::git+${url}")
sha512sums=('SKIP')
pkgver() {
cd "${pkgname%%-git}"
printf "%s" "$(git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g')"
}
build() {
arch-meson "${pkgname%%-git}" build
meson compile -C build
}
package() {
DESTDIR="${pkgdir}" meson install -C build
}