Created
January 24, 2021 12:26
-
-
Save andrewrembrandt/b48a0f76185cef21f45aaf33b3e5eb5f to your computer and use it in GitHub Desktop.
Updated PKGBUILD for glava-git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Robin Broda <robin at broda dot me> | |
_pkgname=glava | |
pkgname=${_pkgname}-git | |
pkgver=r330.a2d4943 | |
pkgrel=1 | |
pkgdesc='OpenGL audio spectrum visualizer' | |
arch=('x86_64') | |
url='https://github.com/IsaacHorvath/glava' | |
license=('GPL3') | |
depends=('x-server' 'pulseaudio' 'libxext' 'libxcomposite' 'libxrender') | |
makedepends=('git' 'meson' 'obs-studio') | |
optdepends=('obs-studio: OBS integration') | |
provides=("${_pkgname}") | |
conflicts=("${_pkgname}") | |
source=('git+https://github.com/IsaacHorvath/glava') | |
md5sums=('SKIP') | |
pkgver() { | |
cd "${_pkgname}" | |
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" | |
} | |
prepare() { | |
cd "${_pkgname}" | |
} | |
build() { | |
cd "${_pkgname}" | |
arch-meson build --prefix /usr | |
ninja -C build | |
} | |
package() { | |
cd "${_pkgname}" | |
DESTDIR="${pkgdir}/" ninja -C build install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment