summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c71d53ae5477d98e975b62c5a9b991168992de09 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer: Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>

pkgname=aurora-compositor-git
pkgver=r4125.6c650ed5
pkgrel=1
pkgdesc="Framework for Qt-based Wayland compositors"
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
url='https://liri.io'
license=('GPL3')
depends=('systemd' 'libdrm' 'libinput' 'qt5-declarative' 'qt5-wayland'
         'xkeyboard-config' 'libxkbcommon' 'glib2' 'fontconfig' 'freetype2')
optdepends=('xorg-server-xwayland: Xwayland support')
makedepends=('git' 'liri-cmake-shared-git' 'aurora-scanner-git'
             'wayland-protocols' 'xcb-util-cursor' 'libxcursor')
conflicts=('aurora-compositor')
replaces=('aurora-compositor')
provides=('aurora-compositor')
groups=('liri-git')

_gitroot="git+https://github.com/lirios/aurora-compositor.git"
_gitbranch=develop
_gitname=aurora-compositor
source=(${_gitname}::${_gitroot}#branch=${_gitbranch})
md5sums=('SKIP')

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

prepare() {
	mkdir -p build
}

build() {
	cd build
	cmake ../${_gitname} \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DBUILD_TESTING:BOOL=OFF \
		-DINSTALL_SYSCONFDIR=/etc \
		-DINSTALL_LIBDIR=/usr/lib \
		-DINSTALL_LIBEXECDIR=/usr/lib \
		-DINSTALL_QMLDIR=/usr/lib/qt/qml \
		-DINSTALL_PLUGINSDIR=/usr/lib/qt/plugins
	make
}

package() {
	cd build
	make DESTDIR="$pkgdir" install
}