summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: add3ef77c28def3798092a88c6b0b5f460beea09 (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
# Maintainer: Curve <curve.platin at gmail.com>
pkgname=aawmtt
pkgver=2.6
pkgrel=1
pkgdesc="Another AwesomeWM Testing Tool, with Live Reload and 'proper' display detection"
arch=('any')
url="https://github.com/Curve/aawmtt"
license=('MIT')
depends=('xorg-server-xephyr')
makedepends=('git' 'cmake' 'ninja')
conflicts=('aawmtt')
provides=('aawmtt')
source=("https://github.com/Curve/aawmtt/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('SKIP')

build() 
{
  cmake -B build -S "$pkgname-$pkgver" -GNinja -DCMAKE_BUILD_TYPE="Release"
  cmake --build build
}

package() 
{
    DESTDIR="$pkgdir" cmake --install build
}