summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a66038ff0f4db236531bf8d695b94edc995b9ea5 (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
# Maintainer: VetheonGames <vetheon@pixelridgesoftworks.com>
pkgname=glava-ridged
pkgver=1.0.0
pkgrel=1
pkgdesc="GLava-Ridged - OpenGL audio visualizer (Fork of GLava)"
arch=('x86_64')
url="https://git.pixelridgesoftworks.com/PixelRidge-Softworks/glava-ridged.git"
license=('GPL')
depends=('glfw-x11' 'pulseaudio' 'libconfig' 'fftw')
makedepends=('git' 'meson' 'ninja')
optdepends=('obs-studio: for optional OBS support')
source=("git+${url}")  # Cloning the entire repo
sha256sums=('SKIP')

build() {
  cd "$srcdir/$pkgname"
  meson build --prefix=/usr
  ninja -C build
}

package() {
  cd "$srcdir/$pkgname"
  DESTDIR="$pkgdir" ninja -C build install
}