summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 144dc896e48058836e3e676ba1d26bf3c1d2ce91 (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
# Maintainer: nevrdid <nevrdid at msn dot com>``

pkgname=pianobooster-qt6-git
pkgver=latest
pkgrel=1
pkgdesc="PianoBooster is a free (Open Source) program that plays Standard Midi Files and allows you to change the speed of playback and transpose the music etc."
arch=('x86_64')
url="https://github.com/pianobooster/PianoBooster"
license=('GPL')
depends=('qt6-base' 'qt6-tools' 'qt6-5compat' 'ftgl' 'rtmidi' 'fluidsynth')
makedepends=('git' 'cmake' 'pkg-config')

source=("git+https://github.com/pianobooster/PianoBooster.git#branch=develop")

build() {
  mkdir -p "$srcdir/PianoBooster/build"
  cd "$srcdir/PianoBooster/build"
  cmake -DCMAKE_INSTALL_PREFIX=/usr -DQT_PACKAGE_NAME=Qt6 ..
  make -j$(nproc)
}

package() {
  cd "$srcdir/PianoBooster/build"
  make DESTDIR="$pkgdir/" install
}
sha256sums=('SKIP')