41c5cddc3d
The next version of Collabora Online will be version 2021. Development of version 2021 will be carried on master branch for the time being. The corresponding core branch is distro/collabora/co-2021 Signed-off-by: Andras Timar <andras.timar@collabora.com> Change-Id: I9c97aaac711c9e1f1e48ed25066b169ea7e26e84
21 lines
553 B
Makefile
21 lines
553 B
Makefile
#!/usr/bin/make -f
|
|
|
|
# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
|
|
include /usr/share/dpkg/default.mk
|
|
|
|
CONFFLAGS = --enable-silent-rules --prefix=/usr --localstatedir=/var --sysconfdir=/etc --with-lokit-path=`pwd`/bundled/include --disable-setcap $(CONFIG_OPTIONS)
|
|
|
|
# main packaging script based on dh7 syntax
|
|
%:
|
|
dh $@ --with=systemd --parallel
|
|
|
|
override_dh_auto_configure:
|
|
./configure $(CONFFLAGS)
|
|
|
|
override_dh_auto_test:
|
|
# do not test
|
|
|
|
override_dh_installinit:
|
|
# no init.d scripts here, assume systemd
|