summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1d7d3556275efd8e14ee5bd22e316d0a30b2ee5c (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
# Contributor: <reg-archlinux AT klein DOT tuxli DOT ch> 
# Contributor: Pablo Moyano (p4block)

pkgname=glmviz-git
pkgver=1.0
pkgrel=2
pkgdesc='High framerate, dB correct OpenGL music visualizer with FiFo buffers and PulseAudio input support'
arch=('any')
url='https://github.com/hannesha/GLMViz'
license=('GPL3')
depends=('glm' 'fftw' 'glfw-x11' 'libconfig')
makedepends=('git')
optdepends=(pulseaudio)
source=("git+https://github.com/hannesha/GLMViz.git")
md5sums=('SKIP')

build() {
	cd "${srcdir}/GLMViz"
        mkdir -p build
        cd build
        cmake ..
}

package() {
	cd "${srcdir}/GLMViz/build"
	make DESTDIR=${pkgdir} install
}