blob: 2c4ab821cf2d0af3d299186cbdde8b0168f1bcd9 (
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
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
include /usr/share/dpkg/architecture.mk
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@ --buildsystem cmake+ninja
override_dh_auto_configure-arch:
dh_auto_configure -- \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_DBUS=ON \
-DDART_TESTING_TIMEOUT=180
override_dh_auto_test-arch:
@# this is not run in parallel just because I'm too lazy to parse DEB_BUILD_OPTIONS
cd obj-$(DEB_HOST_GNU_TYPE) && LC_ALL=C.UTF-8 ninja -v tests
# some tests are not parallel-safe, since they try to look at the same file
ifeq ($(DEB_HOST_ARCH_ENDIAN),little)
dh_auto_test -a --no-parallel
else
# the testsuite fails on BE. https://gitlab.com/inkscape/inkscape/-/issues/1365
-dh_auto_test -a --no-parallel
endif
override_dh_auto_install-arch:
# The tutorials are manually installed, the rest goes here
dh_auto_install --destdir=debian/inkscape
rm -rv debian/inkscape/usr/share/inkscape/tutorials
rm -rv debian/inkscape/usr/share/inkscape/*/README
# Remove extensions that work only on Windows. #930154
# https://gitlab.com/inkscape/inkscape/-/merge_requests/2689
rm -v debian/inkscape/usr/share/inkscape/extensions/print_win32_vector.*
ifeq (buster-backports,$(DEB_DISTRIBUTION))
override_dh_dwz:
: Skipping dwz, 0.12 cannot compress Inkscape debug symbols
endif
override_dh_auto_configure-indep: nothing
override_dh_auto_build-indep: nothing
override_dh_auto_install-indep: nothing
override_dh_auto_test-indep: nothing
.PHONY: nothing
nothing:
: Do nothing for the -indep build
|