From cb602bce7004aedcad88f5a22e4d6acd9372da8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 28 Apr 2019 20:10:31 +0200 Subject: Some work to fix build errors --- debian/rules | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 3245017..0639e27 100755 --- a/debian/rules +++ b/debian/rules @@ -25,7 +25,9 @@ endif dh $@ --with autoreconf override_dh_auto_configure: - ./configure $(confflags) + dh_auto_configure --buildsystem=cmake +#$(confflags) +# ./configure $(confflags) override_dh_auto_build-indep: dh_auto_build -- cgit v1.2.3 From d3f17d40ea57a789b3466db81a3b70fb1294242c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 13 Jul 2019 18:02:05 +0200 Subject: Rewrite build process; Refresh symbols file --- debian/rules | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 0639e27..68cb768 100755 --- a/debian/rules +++ b/debian/rules @@ -19,22 +19,18 @@ ifneq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) confflags += --host $(DEB_HOST_GNU_TYPE) endif -### %: dh $@ --with autoreconf override_dh_auto_configure: - dh_auto_configure --buildsystem=cmake -#$(confflags) -# ./configure $(confflags) + dh_auto_configure --buildsystem=cmake override_dh_auto_build-indep: dh_auto_build - make -C doc override_dh_installdocs-indep: - cp -r $(CURDIR)/doc/html/* $(CURDIR)/debian/liburiparser-doc/usr/share/doc/liburiparser-doc/html/ + cp -r $(CURDIR)/obj-$(DEB_BUILD_GNU_TYPE)/doc/html/* $(CURDIR)/debian/liburiparser-doc/usr/share/doc/liburiparser-doc/html/ $(RM) debian/liburiparser-doc/usr/share/doc/liburiparser-doc/html/*.md5 dh_installdocs -- cgit v1.2.3 From 9e4c4c49fad21372f7f2e95f65d2932a7e024eef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 13 Jul 2019 18:30:03 +0200 Subject: Add QT stuff --- debian/rules | 1 + 1 file changed, 1 insertion(+) (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules index 68cb768..82e9ad9 100755 --- a/debian/rules +++ b/debian/rules @@ -19,6 +19,7 @@ ifneq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) confflags += --host $(DEB_HOST_GNU_TYPE) endif +export QT_SELECT=qt5 %: dh $@ --with autoreconf -- cgit v1.2.3