summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8164aeb5e4f4a61f8e14bf5bdb9874e671573dcb (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
# Maintainer: Albert Graef <aggraef at gmail dot com>

pkgname=showmidi
_pkgname=ShowMIDI
pkgver=0.9.0
pkgrel=1
pkgdesc="Multi-platform GUI application to effortlessly visualize MIDI activity"
arch=("i686" "x86_64")
license=('GPLv3')
url="https://github.com/gbevin/ShowMIDI"
depends=('alsa-lib' 'freetype2' 'libxrandr' 'libxinerama' 'libxcursor')
makedepends=('pkg-config' 'cmake' 'git')
source=("$_pkgname::git+https://github.com/gbevin/$_pkgname.git#tag=$pkgver")
md5sums=('SKIP')

prepare() {
    cd "$srcdir/$_pkgname"
    git submodule update --init --recursive
}

build() {
    export PATH_TO_JUCE=$srcdir/$_pkgname/JUCE
    cd $srcdir/$_pkgname/Builds/LinuxMakefile
    # Default on Linux is to build the VST2, VST3, and LV2 plugins. The
    # following flag disables building the VST2 plugin to avoid license
    # issues. If you have the VST2 SDK sources installed then you might want
    # to remove this and check the ShowMIDI build instructions.
    make CONFIG=Release JUCE_CPPFLAGS_VST="-DJucePlugin_Build_VST=0"
    # Build the CLAP module. This needs cmake.
    cd $srcdir/$_pkgname
    cmake -BBuilds/LinuxMakefile/build/clap -DCMAKE_BUILD_TYPE=Release
    cd $srcdir/$_pkgname/Builds/LinuxMakefile
    cmake --build build/clap --config Release
}

package() {
    # There's no install target, so we just install the standalone and the
    # plugins in the usual places. We also add an icon and desktop file in the
    # standard locations. Factory themes are installed under
    # /usr/share/ShowMIDI/Themes, so that's where you should go looking if you
    # want to load a theme in the setup dialog.

    # Desktop entry & pixmaps
    install -Dm644 "$srcdir/../showmidi.desktop" "${pkgdir}/usr/share/applications/showmidi.desktop"
    install -Dm644 "$srcdir/$_pkgname/Assets/appicon.png" "${pkgdir}/usr/share/pixmaps/showmidi.png"

    # Themes
    mkdir -p "${pkgdir}/usr/share/ShowMIDI"
    cp -r "$srcdir/$_pkgname/Themes" "${pkgdir}/usr/share/ShowMIDI"

    # Standalone
    install -Dm755 -T "$srcdir/$_pkgname/Builds/LinuxMakefile/build/ShowMIDI" "${pkgdir}/usr/bin/ShowMIDI"

    # Plugins
    mkdir -p "${pkgdir}/usr/lib/lv2"
    cp -r "$srcdir/$_pkgname/Builds/LinuxMakefile/build/ShowMIDI.lv2" "${pkgdir}/usr/lib/lv2"
    mkdir -p "${pkgdir}/usr/lib/vst3"
    cp -r "$srcdir/$_pkgname/Builds/LinuxMakefile/build/ShowMIDI.vst3" "${pkgdir}/usr/lib/vst3"
    mkdir -p "${pkgdir}/usr/lib/clap"
    cp  "$srcdir/$_pkgname/Builds/LinuxMakefile/build/clap/ShowMIDI_artefacts/Release/ShowMIDI.clap" "${pkgdir}/usr/lib/clap"
}