X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=debian%2Frules;h=eccc23d2dcdc6ea2317637db4dc50f6a36404b1a;hp=eec20aea89b1765d996a2172af55587a9dc8529b;hb=4f2cf6aebc213c200b98fde6adb7133e8688530d;hpb=312b062f7f49207a16776c19d3a1bfb4a49c2f3b diff --git a/debian/rules b/debian/rules index eec20aea..eccc23d2 100755 --- a/debian/rules +++ b/debian/rules @@ -1,53 +1,18 @@ #!/usr/bin/make -f -# Made with the aid of debmake, by Christoph Lameter, -# based on the sample debian/rules file for GNU hello by Ian Jackson. -package=ginac +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/debhelper.mk -version=$(shell expr `pwd` : '.*-\([0-9.]*\)') -version_major=$(shell expr `pwd` : '.*-\([0-9]*\).[0-9.]*') +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +CXXFLAGS += -finline-limit=1200 +endif -build: - dh_testdir - ./configure --without-cint --prefix=/usr - $(MAKE) CXXFLAGS="-O2" - touch build +# 1.5.1-1-blah (Debian version) ==> 1.5 (LT_RELEASE) +GINAC_RELEASE := $(shell echo $(DEB_VERSION) | cut -f 1,2 -d . ) +GINACLIB := libginac$(GINAC_RELEASE) -clean: - dh_testdir - dh_clean - -rm -f build - -$(MAKE) distclean - -rm -f `find . -name "*~"` - -rm -rf debian/tmp `find debian/* -type d ! -name CVS` debian/files* core - -rm -f debian/*substvars - -binary-indep: build - dh_testdir - dh_testroot - -binary-arch: build - dh_testdir - dh_testroot - dh_installdirs - # When will Automake honor FHS? - $(MAKE) install prefix=`pwd`/debian/tmp/usr infodir=`pwd`/debian/tmp/usr/share/info mandir=`pwd`/debian/tmp/usr/share/man - dh_installdocs ChangeLog NEWS README - dh_installchangelogs - dh_installmenu - dh_movefiles -pginac-dev -pginac-doc - if test -f cint/ginaccint.bin; then dh_movefiles -pginaccint; fi - dh_strip - dh_compress - dh_fixperms - dh_shlibdeps - dh_gencontrol - dh_makeshlibs - dh_installdeb - dh_md5sums - dh_builddeb -pginac -pginac-dev -pginac-doc - if test -f cint/ginaccint.bin; then dh_builddeb -pginaccint; fi - -binary: binary-indep binary-arch - -.PHONY: binary binary-arch binary-indep clean +DEB_CONFIGURE_EXTRA_FLAGS := --disable-rpath +DEB_DH_MAKESHLIBS_ARGS := -V"$(GINACLIB) (>= $(GINAC_RELEASE).0)" +DEB_DH_SHLIBDEPS_ARGS := --libpackage=$(GINACLIB) -l debian/$(GINACLIB)/usr/lib +DEB_DBG_PACKAGE_ALL = +DEB_DBG_PACKAGE_$(GINACLIB) = $(GINACLIB)-dbg