X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=debian%2Frules;h=e15c5e6410a1328678103b3fbb4a36f53f725bf8;hb=2ceece87ee96c370cfcd2408d069d1fd913792ab;hp=4843bc6ea05f71b9bb4094e1e627686f82380693;hpb=19d82770007e4d565ce4d07e3e7a02a1809de4eb;p=ginac.git diff --git a/debian/rules b/debian/rules index 4843bc6e..e15c5e64 100755 --- a/debian/rules +++ b/debian/rules @@ -1,51 +1,17 @@ #!/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.4.1-1-blah (Debian version) ==> 1.4 (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 - dh_strip - dh_compress - dh_fixperms - dh_shlibdeps - dh_gencontrol - dh_makeshlibs - dh_installdeb - dh_md5sums - dh_builddeb -pginac -pginac-dev - -binary: binary-indep binary-arch - -.PHONY: binary binary-arch binary-indep clean +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