summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8cf2305a99101a49bd73d1a665d6f0204a0b7a09 (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
# Maintainer: Miroslav Koškár <http://mkoskar.com/>

_basename='vcvrack'

pkgname='vcvrack-git'
pkgver=v0.5.0.r4.g264c040
pkgrel=1
pkgdesc='Open-source virtual Eurorack DAW'
url='https://github.com/VCVRack/Rack'
license=(BSD)
arch=(i686 x86_64)
depends=(glew glfw-x11 jansson libsamplerate curl libzip rtmidi rtaudio gtk2)
makedepends=(git)

source=(
    "$_basename::git+https://github.com/VCVRack/Rack.git"
    git+https://github.com/AndrewBelt/osdialog.git
    git+https://github.com/AndrewBelt/oui-blendish.git
    git+https://github.com/mackron/dr_libs.git
    git+https://github.com/memononen/nanosvg.git
    git+https://github.com/memononen/nanovg.git
    vcvrack.sh
)
sha256sums=(
    SKIP
    SKIP
    SKIP
    SKIP
    SKIP
    SKIP
    69736bbb5f49f9ce451c1311ec4399f4f59a86056233f151b9457116089a502d
)

pkgver() {
    cd "$_basename"
    git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
    cd "$_basename"
    git submodule init
    git config submodule.ext/dr_libs.url "$srcdir/dr_libs"
    git config submodule.ext/nanosvg.url "$srcdir/nanosvg"
    git config submodule.ext/nanovg.url "$srcdir/nanovg"
    git config submodule.ext/osdialog.url "$srcdir/osdialog"
    git config submodule.ext/oui-blendish.url "$srcdir/oui-blendish"
    git submodule update
}

build() {
    cd "$_basename"
    local tag
    tag=$(git describe --tags --abbrev=0)
    FLAGS=$(pkg-config --cflags-only-I glew glfw3 jansson samplerate libcurl libzip rtmidi rtaudio gtk+-2.0)
    export FLAGS
    make VERSION="${tag##v}"
}

package() {
    cd "$_basename"
    install -D -m755 "$srcdir/vcvrack.sh" "$pkgdir/usr/bin/vcvrack"
    install -D -m644 -t "$pkgdir/usr/share/licenses/$_basename" LICENSE*
    install -D -m755 -t "$pkgdir/opt/$_basename" Rack
    install -d "$pkgdir/opt/$_basename/plugins"
    cp -dr --preserve=mode -t "$pkgdir/opt/$_basename" res
}