blob: ab561c0a6cd42617f1e6b0a165e82ed698a71da8 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Maintainer: Mathias Buhr <napcode@apparatus.de>
DLAGENTS=("https::/usr/bin/curl -k -o %o %u")
pkgname=sonic-lineup
pkgver=1.1
pkgrel=5
pkgdesc="Sonic Lineup is a free, open-source application for Windows, Linux, and Mac, designed for rapid visualisation of multiple audio files containing versions of the same source material"
arch=('x86_64')
url="https://www.sonicvisualiser.org/sonic-lineup/"
license=('GPL2')
depends=(
'capnproto'
'boost-libs'
'fftw'
'jack'
'libfishsound'
'libid3tag'
'liblo'
'liblrdf'
'libmad'
'liboggz'
'libpulse'
'libsamplerate'
'libsndfile'
'libx11'
'opus'
'opusfile'
'portaudio'
'qt5-base'
'qt5-svg'
'qt5-tools'
'rubberband'
'serd'
'sord'
)
makedepends=(
'boost'
)
source=("${pkgname}-${pkgver}.tar.gz::https://code.soundsoftware.ac.uk/attachments/download/2765/${pkgname}-${pkgver}.tar.gz")
sha256sums=('30e1c5f6f17827ebc03b8c7526e6a9481ecedf05a017e07dd1a432ae5c9a854c')
build() {
cd "$srcdir/$pkgname-$pkgver"
export INSTALL_ROOT="${pkgdir}/"
./configure --prefix=/usr
patch -p2 -i ../../compilation_fixes.patch
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
export INSTALL_ROOT="${pkgdir}/"
make install
}
|