summaryrefslogtreecommitdiff
path: root/debian/rules
blob: cf9da6245c053d35e3a20a4e3ae73d595f05edec (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all, optimize=-lto

ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
        INSTALL_PROGRAM += -s
endif

DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)

CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)



%:
	dh $@

override_dh_auto_configure:
#	cp build/debian/CMakeLists.txt ./
#	#dh_auto_configure -- --enable-static
	cd build/debian/
	dh_auto_configure -Dbuild/debian --buildsystem=cmake --no-parallel
#	cd build/debian && cmake . && make

override_dh_install-arch:
	# chmod -x examples/*.cpp
	dh_install
	#
	# rename arch-dependent file to name-MULTIARCH.ext
	# and link to the old name
	#
	mv -f $(CURDIR)/debian/libxbase64-dev/usr/include/xbase64/xbconfig.h $(CURDIR)/debian/libxbase64-dev/usr/include/xbase64/xbconfig-$(DEB_HOST_MULTIARCH).h
	cd $(CURDIR)/debian/libxbase64-dev/usr/include/xbase64 && ln -rs xbconfig-$(DEB_HOST_MULTIARCH).h xbconfig.h

override_dh_install-indep:
	# chmod -x examples/*.cpp
	dh_install

override_dh_makeshlibs:
	dpkg-gensymbols -plibxbase64-1
	dh_makeshlibs