blob: 6b246bde3f3848714f6d90a7cb25d5a03d05f8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
# Copyright (c) 2013 Intel Corporation
DEB_DESTDIR := $(CURDIR)/debian/tmp
%:
dh $@ --buildsystem cmake
override_dh_auto_configure:
dh_auto_configure -- \
-DCMAKE_BINARY_DIR=$(CURDIR)/debian/tmp \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH) \
-DCMAKE_BUILD_TYPE=Release \
-Dwaffle_has_gbm=1 \
-Dwaffle_has_glx=1 \
-Dwaffle_has_x11_egl=1 \
-Dwaffle_has_wayland=1 \
-Dwaffle_build_manpages=1 \
-Dwaffle_build_htmldocs=0 \
-Dwaffle_build_examples=0
|