summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bc3aa4614334ca74268372e228f9f27b9a115057 (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
# Maintainer: Teteros <teteros at teknik dot io>

pkgname=airwindows-git
pkgver=r130.0d16be1
pkgrel=1
pkgdesc="Airwindows plugins are modular, graphic-less, stripped-down, VST plugins for Mac and PC"
arch=(x86_64)
url="https://www.airwindows.com/"
license=(MIT)
groups=(vst-plugins pro-audio)
makedepends=(git cmake steinberg-vst36)
provides=("${pkgname%-*}")
source=("git+https://github.com/${pkgname%-*}/${pkgname%-*}.git"
        "https://raw.githubusercontent.com/magnetophon/airwindows/master/plugins/LinuxVST/include/vstsdk/CMakeLists.txt")
sha256sums=('SKIP' 'SKIP')

pkgver() {
  cd "${pkgname%-*}"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
  cd "${pkgname%-*}/plugins/LinuxVST"
  # Fix cmake build, see:
  # https://github.com/airwindows/airwindows/pull/5
  rm -f build/CMakeCache.txt
  mkdir -p include/vstsdk
  cp "${srcdir}/CMakeLists.txt" include/vstsdk/CMakeLists.txt
}

build() {
  cd "${pkgname%-*}/plugins/LinuxVST/build"
  cmake -DVSTSDK_ROOT=/usr/include/vst36 ..
  make || return 1
}

package() {
  cd "${pkgname%-*}/plugins/LinuxVST/build"
  mkdir -p "${pkgdir}/usr/lib/vst/${pkgname%-*}"
  cp ./*.so "${pkgdir}/usr/lib/vst/${pkgname%-*}"
}