diff options
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 34 | 
1 files changed, 34 insertions, 0 deletions
| diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..af4f323 --- /dev/null +++ b/debian/rules @@ -0,0 +1,34 @@ +#!/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_auto_configure: +	dh_auto_configure -- --enable-binary-compatible-posix-api=yes + +override_dh_install: +	$(RM) debian/tmp/usr/bin/onig-config +	$(RM) debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libonig.a +	$(RM) debian/tmp/usr/lib/${DEB_HOST_MULTIARCH}/libonig.la +	dh_install -X.la -X.a + +override_dh_makeshlibs: +	dh_makeshlibs +	dpkg-gensymbols -v$(VERSION) -plibonig5 + +override_dh_auto_clean: +	dh_auto_clean +	$(RM) $(CURDIR)/oniguruma.pc | 
