Verified Commit 7c5c8fa0 authored by Michael R. Crusoe's avatar Michael R. Crusoe 🏳️‍🌈
Browse files

split arch/indep install

parent 553e776b
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
seqan2 (2.4.0+dfsg-7) unstable; urgency=medium

  * Split override_dh_install into -arch and -indep

 -- Michael R. Crusoe <michael.crusoe@gmail.com>  Sat, 17 Feb 2018 09:22:51 -0800

seqan2 (2.4.0+dfsg-6) unstable; urgency=medium

  * Retry building on mips*; patch adapted from Adrian Bunk <bunk@debian.org>
+7 −3
Original line number Diff line number Diff line
@@ -65,14 +65,18 @@ override_dh_auto_build-indep:
	    -e "s=@CMAKE_INSTALL_FULL_INCLUDEDIR@=/usr/include=g" \
	    util/pkgconfig/seqan.pc.in > seqan-2.pc

override_dh_install:
	dh_install
override_dh_install-indep:
	dh_install --indep
	# Delete additional LICENSE files
	find $(CURDIR)/debian/$(pkgapps) -type f -name LICENSE -delete || /bin/true
	if [ -d $(CURDIR)/debian/$(pkgdev) ] ; then \
	    find $(CURDIR)/debian/$(pkgdev) -type f -name LICENSE -delete ; \
	    find $(CURDIR)/debian/$(pkgdev) -type f -name "*.pyc" -delete ; \
	fi

override_dh_install-arch:
	dh_install --arch
	# Delete additional LICENSE files
	find $(CURDIR)/debian/$(pkgapps) -type f -name LICENSE -delete || /bin/true
	find $(CURDIR)/debian/$(pkgapps)/usr/lib/seqan/bin -type f \
		-name "*.sh" | xargs chmod a+x
	find $(CURDIR)/debian/$(pkgapps)/usr/share/commonwl -type f \