2016-01-10 22:12:38 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2016-11-04 17:56:54 +00:00
|
|
|
# a dirty way to make dh_shlibdeps find the libraries, if you have better
|
|
|
|
# solution I'd welcome it
|
|
|
|
export LD_LIBRARY_PATH := $(shell pwd)/obj-$(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)/lib:$(LD_LIBRARY_PATH)
|
|
|
|
|
2016-01-12 17:29:12 -05:00
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
|
|
|
override_dh_auto_configure:
|
|
|
|
# the mysqld library is not much of a static
|
2016-05-03 17:38:17 +00:00
|
|
|
dh_auto_configure -- -DMYSQL_LIBRARIES:STRING="-lmysqld -lcrypt -laio" \
|
|
|
|
-Wno-dev \
|
2016-10-07 23:46:30 +00:00
|
|
|
-DKATIE_LDCONF_FULL=/etc/ld.so.conf.d \
|
|
|
|
-DKATIE_PROFILE_FULL=/etc/profile.d
|
2016-01-12 17:29:12 -05:00
|
|
|
|
2016-01-10 22:12:38 +02:00
|
|
|
override_dh_auto_build:
|
|
|
|
dh_auto_build
|
|
|
|
|
|
|
|
override_dh_auto_install:
|
|
|
|
dh_auto_install
|
|
|
|
|
|
|
|
override_dh_auto_clean:
|
2016-01-10 16:11:10 -05:00
|
|
|
dh_auto_clean
|