blob: fd6a449c3140aa28616840ede5250bdc3dd45d30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export DEB_VERSION
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
CONFIGURE_OPTIONS = -DBUILD_SHARED_LIBS=on
ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
CONFIGURE_OPTIONS += -DWITH_SEXP_TESTS=off
endif
override_dh_auto_configure:
dh_auto_configure --builddirectory=build -- $(CONFIGURE_OPTIONS)
%:
dh $@ --builddirectory=build
|