blob: 445698c36d5a4b8c76db265522a2b9cc8a34ac36 (
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
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=goverlay-git
pkgver=1.10.r0.g608c32b
pkgrel=1
pkgdesc="A GUI to help manage Vulkan/OpenGL overlays"
arch=('x86_64')
url="https://github.com/benjamimgois/goverlay"
license=('GPL-3.0-or-later')
depends=('glu' 'mangohud' 'qt6pas')
makedepends=('git' 'lazarus-qt6')
checkdepends=('appstream' 'desktop-file-utils')
optdepends=(
'mesa-utils: OpenGL preview'
'ttf-dejavu: recommended font'
'ttf-ubuntu-font-family: recommended font'
'vulkan-tools: Vulkan preview'
)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/benjamimgois/goverlay.git')
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${pkgname%-git}"
make LAZBUILDOPTS=--lazarusdir=/usr/lib/lazarus
}
check() {
cd "${pkgname%-git}"
make tests
}
package() {
cd "${pkgname%-git}"
make prefix=/usr libexecdir=/lib DESTDIR="$pkgdir/" install
}
|