blob: 02d420c0b82cd815c8ea56631a01a095bfa02b96 (
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
|
#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
export DH_VERBOSE = 1
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
UPSTREAM_VERSION := $(shell dpkg-parsechangelog --show-field Version | cut -d- -f1)
get-orig-source:
uscan --download-current-version
%:
dh $@ --buildsystem=none
override_dh_auto_clean:
-tar -xf ../ucspi-ssl_$(UPSTREAM_VERSION).orig.tar.gz --strip-components=1
rm -f superscript.com/net/ucspi-ssl-$(UPSTREAM_VERSION)/conf-cc
$(MAKE) -C superscript.com/net/ucspi-ssl-$(UPSTREAM_VERSION)/src clean
override_dh_auto_configure:
echo "$(CC) `pkg-config -cflags qlibs` $(CFLAGS)" >superscript.com/net/ucspi-ssl-$(UPSTREAM_VERSION)/conf-cc
override_dh_auto_build:
$(MAKE) -C superscript.com/net/ucspi-ssl-$(UPSTREAM_VERSION)/src default
|