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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%:
dh $@ --with quilt,autoreconf
override_dh_auto_configure:
dh_auto_configure -- \
--prefix=/usr \
--enable-threads \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-tcl=/usr/lib \
--with-tclinclude=/usr/include/tcl \
--with-mysql-lib=/usr/lib/$(DEB_HOST_MULTIARCH)
override_dh_auto_install:
dh_auto_install --destdir=$(CURDIR)/debian/mysqltcl
mkdir $(CURDIR)/debian/mysqltcl/usr/lib/tcltk
mv $(CURDIR)/debian/mysqltcl/usr/lib/mysqltcl* \
$(CURDIR)/debian/mysqltcl/usr/lib/tcltk
rm -rf \
$(CURDIR)/debian/mysqltcl/usr/share/man/mann \
$(CURDIR)/debian/mysqltcl/usr/bin \
$(CURDIR)/debian/mysqltcl/usr/include
override_dh_makeshlibs:
dh_makeshlibs
tcltk-depends
|