blob: 833094fb0f844f3f1339058871f93dc8730867bc (
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
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
#
# Test for gcc-10 support
#
#export CC=gcc-10
#export CXX=g++-10
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
VERSION = $(shell head -n1 debian/changelog | sed -e 's/.*(//;s/-.*).*//;s/\+/\-/')
%:
dh $@
override_dh_install:
$(RM) debian/tmp/usr/bin/onig-config
dh_install -X.la -X.a
override_dh_makeshlibs:
dh_makeshlibs
dpkg-gensymbols -v$(VERSION) -plibonig5
|