summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a6c875d0f05458f3c91b210df98b00c740cc6c44 (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
# Mantainer: Dudemanguy <random342@airmail.cc>
# Contributer: Vicente Reyes <vreyesvaldivieso@gmail.com>
pkgname=vmn-git
pkgver=0.4.1+1+g82c2b99
pkgrel=1
pkgdesc="Simplistic cli music player built on mpv and curses"
url="https://github.com/Dudemanguy/vmn"
arch=(x86_64)
license=(GPL3)
depends=(ffmpeg mpv ncurses)
makedepends=(git meson scdoc)
source=("git+https://github.com/Dudemanguy/vmn.git")
sha512sums=('SKIP')

pkgver() {
	cd vmn
	git describe --tags | sed 's/-/+/g'
}

build() {
	export CFLAGS="-Wno-format-security"
	arch-meson vmn build
	meson compile -C build
}

package() {
	meson install -C build --destdir "$pkgdir"
}