summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 51b455adcc39e5b1228a42febd38b42b640e631e (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
# Contributor: masutu < masutu dot arch dot googlemail dot com >
# Maintainer: masutu < masutu dot arch dot googlemail dot com >
pkgname=qloud
pkgver=1.2
pkgrel=1
pkgdesc="A tool to measure a loudspeaker frequency response and distortions."
arch=('i686' 'x86_64')
url="https://github.com/molke-productions/qloud"
license=('GPL')
depends=('fftw' 'jack' 'qwt')
source=(git+https://github.com/molke-productions/qloud.git)
sha512sums=('SKIP')


build() {
  cd "$srcdir/$pkgname"
  qmake
  make
}

package() {
  cd "$srcdir/$pkgname"
  install -Dm755 bin/qloud $pkgdir/usr/bin/qloud
}

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