mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
22 lines
513 B
Makefile
Executable File
22 lines
513 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
DEB_HOST_MULTIARCH?=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
# see FEATURE AREAS in dpkg-buildflags(1)
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
export PYBUILD_NAME=notcurses
|
|
|
|
%:
|
|
dh $@ --buildsystem=cmake
|
|
|
|
# dh_auto_test -O--buildsystem=cmake -O--no-parallel
|
|
# Don't try to run ncurses tests
|
|
override_dh_auto_test:
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
cd obj-x86_64-linux-gnu && env -u TERM make test
|
|
endif
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -B $(BUILDDIR)
|