blob: cc0f13315e91fbf10ca5dacbfa4701ded3d9142c (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: yustin <#archlinux-proaudio@libera.chat>
# Contributor: kiasoc5 <kiasoc5 at tutanota dot com>
# Contributor: xantares
pkgname=stargate
pkgver=23.06.1
pkgrel=1
pkgdesc="A digital audio workstation (DAW) with a powerful pattern-based workflow"
license=('GPL')
arch=('x86_64' 'aarch64')
url="https://github.com/stargatedaw/stargate"
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"
"git+https://codeberg.org/soundtouch/soundtouch.git#commit=dd2252e9af3f2d6b749378173a4ae89551e06faf"
"git+https://github.com/stargatedaw/stargate-sbsms.git"
)
sha256sums=('2231243ef03245cf6dc996102887c6bccc009fc8ced8f018e98770f3b74853ff'
'SKIP'
'SKIP'
)
prepare(){
cd stargate-release-${pkgver}
rm -rf src/vendor/soundtouch/
cd src/vendor
cp -r ${srcdir}/soundtouch .
cp -r ${srcdir}/stargate-sbsms/* sbsms/
cd ..
sed "/\binstall_symlinks:/s/:.*/:/" -i Makefile
}
build() {
cd stargate-release-${pkgver}/src
# for non-x86 architectures
PLAT_FLAGS="${CFLAGS}" make all
}
package() {
cd stargate-release-${pkgver}/src
DESTDIR=${pkgdir} make install
}
|