24 lines
527 B
Makefile
Executable File
24 lines
527 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# newer dpkg set this by default.
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
# Include dpatch stuff.
|
|
include /usr/share/dpatch/dpatch.make
|
|
|
|
%:
|
|
dh $@ --with dpatch,autotools_dev
|
|
|
|
override_dh_auto_configure:
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-ssl \
|
|
--with-ssl-lib=/usr/lib/$(DEB_HOST_MULTIARCH) \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib/nagios/plugins \
|
|
--libdir=/usr/lib/nagios \
|
|
--enable-command-args
|
|
|
|
override_dh_auto_install:
|