blob: 17e84017d91cedea11559c7b90c1bd16c2bbdf5c (
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
|
# Maintainer: SClause <arch at sclause dot net>
_pkgname=grandorgue
pkgname="$_pkgname"
_version=3.16.3
_build=1
pkgver="${_version}.${_build}"
pkgrel=1
pkgdesc="Virtual Pipe Organ Software"
arch=('i686' 'x86_64')
url="https://github.com/GrandOrgue/$_pkgname"
license=('GPL-2.0-or-later')
depends=(wxwidgets-gtk3 wavpack fftw jack rtmidi rtaudio portaudio zita-convolver yaml-cpp)
makedepends=(git cmake docbook-xsl imagemagick inkscape)
conflicts=(grandorgue-git grandorgue-bin)
source=("git+$url.git#tag=${_version}-${_build}")
sha256sums=('SKIP')
options=(!debug)
build() {
cd "$_pkgname"
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DUSE_INTERNAL_RTAUDIO=Off -DUSE_INTERNAL_PORTAUDIO=Off -DUSE_INTERNAL_ZITACONVOLVER=Off -DBUILD_VERSION=${_build}
cmake --build build
}
package() {
cd "$_pkgname"
DESTDIR="$pkgdir" cmake --install build
}
|