blob: a2c68e4d09a33b3648bb7485efca8add9b243eb8 (
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
|
# Maintainer: kiasoc5 <kiasoc5 at tutanota dot com>
# Contributor: xantares
pkgname=stargate
pkgver=22.03.1
pkgrel=1
pkgdesc="A digital audio workstation (DAW) with a powerful pattern-based workflow"
license=('GPL')
arch=('x86_64' 'aarch64')
url="https://stargateaudio.github.io/"
depends=(
'alsa-lib'
'fftw'
'libsndfile'
'portaudio'
'portmidi'
'python-jinja'
'python-mido'
'python-mutagen'
'python-numpy'
'python-psutil'
'python-yaml'
'python-pymarshal'
'python-wavefile'
'python-pyqt6'
'qt6-svg'
'rubberband'
'sbsms'
)
makedepends=(
'jq'
'libsbsms'
)
optdepends=(
'lame'
'ffmpeg'
'vorbis-tools'
'python-pyqt5: qt5 backend'
)
source=("https://github.com/stargateaudio/stargate/archive/refs/tags/release-${pkgver}.tar.gz")
sha256sums=('7aadee110cf82d56b6c2e638486e53ee6c6f0340017e18f2f225e2e15642fb16')
build() {
cd stargate-release-${pkgver}/src
# for non-x86 architectures
PLAT_FLAGS="${CFLAGS}" make distro
}
package() {
cd stargate-release-${pkgver}/src
PREFIX=${pkgdir}/usr make install_distro
}
|