X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=debian%2Frules;h=3a24dd81199d83e622d7e95b37f7dbb5e0c12b0b;hp=e6493b5b2f3c869350829d17e51f0116222c7576;hb=ece5f57b53603bea68161c946d26d58bb6d39aca;hpb=1b01817e5fa898ea7030097ab39fee36e6f10f6c diff --git a/debian/rules b/debian/rules index e6493b5b..3a24dd81 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,4 @@ #!/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 @@ -9,24 +7,8 @@ version_major=$(shell expr `pwd` : '.*-\([0-9]*\).[0-9.]*') build: dh_testdir - ./configure --prefix=/usr - - -mkdir shared static - # - # First build the shared library - # - cd shared ; \ - $(MAKE) -f ../Makefile VPATH=".." srcdir=".." \ - CFLAGS="-O2 -fPIC -pipe" ; \ - gcc -shared -Wl,-soname,$(package).so.$(version_major) -o $(package).so.$(version) `ls *.o` - # - # Build the static library (it does not need Position Independent Code, - # which reserves one register; thus, without -fPIC we get more efficient - # code). - # - cd static ; \ - $(MAKE) -f ../Makefile VPATH=".." srcdir=".." \ - CFLAGS="-O2 -pipe" LDFLAGS="-s" progs + ./configure --prefix=/usr --with-cint + $(MAKE) CXXFLAGS="-O2" touch build clean: @@ -40,27 +22,31 @@ clean: binary-indep: build dh_testdir -# There are no architecture-independent files to be uploaded -# generated by this package. If there were any they would be -# made here. + dh_testroot binary-arch: build dh_testdir - -rm -rf debian/tmp `find debian/* -type d` - install -d debian/tmp - cd debian/tmp && install -d `cat ../dirs` - install -m644 static/$(package).a debian/tmp/usr/lib/ - install -m644 static/gdbm.h dbm.h ndbm.h debian/tmp/usr/include/ - install -m644 gdbm.3 debian/tmp/usr/share/man/man3/gdbm.3gdbm - - install -m644 shared/$(package).so.$(version) debian/tmp/usr/lib - - $(MAKE) install prefix=`pwd`/debian/tmp/usr - debstd -m ChangeLog NEWS README - dpkg-gencontrol -pginac1-dev - chown -R root.root debian/tmp - chmod -R go=rX debian/tmp - dpkg --build debian/tmp .. + dh_testroot + dh_installdirs + # When is Automake going to honor FHS? + $(MAKE) install prefix=`pwd`/debian/tmp/usr infodir=`pwd`/debian/tmp/usr/share/info mandir=`pwd`/debian/tmp/usr/share/man + # Work around dumb lintian error: binary-without-manpage ginaccint.bin + (cd `pwd`/debian/tmp/usr/share/man/man1; ln -s ginaccint.1.gz ginaccint.bin.1.gz) + # Automake generated Makefile.in do install-info, which is bad for us: + -rm -f `pwd`/debian/tmp/usr/share/info/dir* + dh_installdocs ChangeLog NEWS README + dh_installchangelogs + dh_installmenu + dh_movefiles + dh_strip + dh_compress + dh_fixperms + dh_shlibdeps + dh_gencontrol + dh_makeshlibs + dh_installdeb + dh_md5sums + dh_builddeb binary: binary-indep binary-arch