summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 764b7ad0bde5a4be12cc5877df202adb7ce5a34c (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
# Maintainer: Konstantinos Foutzopoulos <mail@konfou.xyz>

_pkgname=qsynth
pkgname=${_pkgname}-git
pkgver=r531.999e198
pkgrel=1
pkgdesc="A fluidsynth Qt GUI Interface (GIT version)"
arch=('i686' 'x86_64')
url="https://qsynth.sourceforge.io/"
license=('GPL2')
depends=('fluidsynth' 'qt5-x11extras')
makedepends=('qt5-tools')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("${_pkgname}::git+https://git.code.sf.net/p/${_pkgname}/code")
sha256sums=('SKIP')

pkgver() {
  cd ${_pkgname}
  git describe --long | sed -e 's/qsynth_//;s/_/./g;s/-/.r/;s/-/./'
}

build() {
  cd ${_pkgname}
  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
          -DCMAKE_BUILD_TYPE=release
  make
}

package() {
  cd ${_pkgname}
  make DESTDIR="${pkgdir}" install
}

# vim:set ts=2 sw=2 et: