34 lines
874 B
Makefile
Executable File
34 lines
874 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
|
|
|
|
BUILDDIR = builddir
|
|
|
|
$(BUILDDIR)/Makefile:
|
|
mkdir -p $(BUILDDIR)
|
|
cd $(BUILDDIR) && \
|
|
cmake .. \
|
|
-DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \
|
|
-DLIBDIR=/usr/lib/${DEB_HOST_MULTIARCH} \
|
|
-DENABLE_DOC:BOOL=ON \
|
|
-DENABLE_MAN:BOOL=ON \
|
|
-DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo \
|
|
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$(CFLAGS) -D_FORTIFY_SOURCE=2" \
|
|
-DCMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING="$(LDFLAGS)" \
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON \
|
|
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
|
|
|
|
override_dh_auto_configure:
|
|
# the package also has autotools buildsys and
|
|
# debhelper try to use it but that's not needed
|
|
echo
|
|
|
|
override_dh_auto_build: $(BUILDDIR)/Makefile
|
|
dh_auto_build
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs ChangeLog.adoc
|
|
|
|
%:
|
|
dh $@ --builddirectory=$(BUILDDIR) --without autoreconf
|