blob: 324d5f6d7c195f210251e91def66ad334d852fa6 (
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
|
# Maintainer: Michael Vale <mike@vale.net.au>
_pkgname=samplebrain
pkgname=$_pkgname-git
pkgver=0.18.r6.g6bc1cbe
pkgrel=1
epoch=
pkgdesc="A custom sample mashing app designed by Aphex Twin."
arch=('x86_64')
url="https://gitlab.com/then-try-this/samplebrain"
license=('GPL')
groups=()
depends=('libsndfile' 'portaudio' 'liblo' 'fftw' 'qt5-base')
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("samplebrain-git::git+https://gitlab.com/then-try-this/samplebrain.git")
noextract=()
md5sums=('SKIP')
validpgpkeys=()
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/_release//g'
}
build() {
cd "$pkgname"
qmake-qt5
make
}
check() {
cd "$pkgname"
make -k check
}
package() {
cd "$pkgname"
make INSTALL_ROOT="$pkgdir/" install
}
|