blob: cb568c0f969a66b76f34e7b5ee21a842c3543f76 (
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
56
57
58
59
60
61
62
63
64
65
66
67
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Ivan Semkin (ivan at semkin dot ru)
# Contributor: kikadf <kikadf.01@gmail.com>
pkgname=mir-git
pkgver=2.18.2.r58.g8cccc26
pkgrel=3
pkgdesc="Canonical's display server"
url="https://github.com/canonical/mir"
arch=(x86_64 i686 armv7h aarch64)
license=('GPL-2.0-or-later OR GPL-3.0-or-later')
depends=(boost-libs libglvnd lttng-ust libepoxy libxml++2.6 libinput yaml-cpp
libxkbcommon freetype2 hicolor-icon-theme libxcursor
egl-wayland wayland
libevdev umockdev
glib2 glibc gcc-libs util-linux-libs libxcb libxkbcommon-x11 libdrm mesa libx11 gtest glibmm
# capnproto google-glog gflags liburcu nettle libevdev protobuf python-gobject
)
makedepends=(git glm doxygen graphviz cmake boost wlcs glmark2
python-pillow python-dbus # required
#gcovr lcov valgrind
python-dbusmock
glib2-devel
)
optdepends=('qterminal: required for miral demos'
'ttf-ubuntu-font-family: required for miral demos'
'qt5-wayland: required for miral demos'
'xcursor-dmz: opt requirement for miral demos')
conflicts=(mir)
provides=(mir)
options=(!lto)
source=("git+https://github.com/canonical/mir.git")
sha256sums=('SKIP')
pkgver() {
cd "mir"
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
export CFLAGS+=" -Wno-error=array-bounds"
export CXXFLAGS+=" -Wno-error=array-bounds"
local _flags=(
-DMIR_USE_PRECOMPILED_HEADERS=OFF
-Dglm_DIR:PATH=/usr/lib/cmake/glm
)
cmake -B build -S "mir" -Wno-dev \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
"${_flags[@]}"
cmake --build build
}
#check() {
# ctest --test-dir build --output-on-failure
#}
package() {
DESTDIR="${pkgdir}" cmake --install build
}
|