blob: 45a644f01a0b340809aa6851a8743278ed53ce14 (
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
29
30
31
|
# Maintainer: Jonathan Knapp <jaknapp8+aur@gmail.com>
# URL: https://github.com/saegiru/UltimateDoomVisor
# Upstream: https://github.com/saegiru/UltimateDoomVisor
pkgname=('ultimate-doom-visor-git')
pkgver=0.0.5.ge3d9116
pkgrel=1
pkgdesc="DOOM hud mod that supports brutal-doom and project brutality."
arch=('any')
url='https://github.com/saegiru/UltimateDoomVisor'
# license=('MIT') # not really
# depends=()
makedepends=('zip')
optdepends=('gzdoom' 'qzdl' 'project-brutality')
provides=('ultimate-doom-visor')
# conflicts=()
source=("$pkgname::git+https://github.com/saegiru/UltimateDoomVisor.git")
md5sums=('SKIP')
pkgver() {
cd $pkgname
# git describe --tags | sed 's/^v//;s/-/./g'
echo "0.0.$(git rev-list --count master).g$(git describe --always)"
}
package() {
cd "$srcdir"
rm udv.zip || true;
zip -r "udv.zip" "$pkgname" -x "*.git*"
install -Dm 744 "udv.zip" "$pkgdir/usr/share/games/project-brutality/UltimateDoomVisor-master.pk3";
}
|