summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 536ea91e83151b2568bdf27f6c14330337d96f95 (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
# Maintainer: Magnus Groß, for email contact see AUR commit author email
_pkgname=vtm
pkgname="$_pkgname"-git
pkgver=0.9.55.r0.g7cf5e3e2
pkgrel=1
pkgdesc="Terminal multiplexer with window manager and session sharing"
arch=('i686' 'x86_64')
url="https://github.com/netxs-group/$_pkgname"
license=('MIT')
depends=()
makedepends=(git cmake)
source=("git+$url.git")
md5sums=('SKIP')

pkgver() {
	cd "$_pkgname"
	( set -o pipefail
		git describe --long --tags 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | sed 's/^v//' ||
		printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
	)
}

build() {
	cd "$_pkgname"
	cmake -B build -DCMAKE_INSTALL_PREFIX="/usr"
	cmake --build build
}

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