X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Flablgtkmathview%2Fdebian%2Frules;h=ed0e94113cffed374a5a59264c61e2744c0b3e15;hb=3535b8c86ed85f10ae9b25ad449e1d0aaeccc90a;hp=1f01a99486547bb1caef553fb01287afbaaa1511;hpb=1ddd82e7c4d325be83ad62976a036b6f0ffbe0a1;p=helm.git diff --git a/helm/DEVEL/lablgtkmathview/debian/rules b/helm/DEVEL/lablgtkmathview/debian/rules index 1f01a9948..ed0e94113 100755 --- a/helm/DEVEL/lablgtkmathview/debian/rules +++ b/helm/DEVEL/lablgtkmathview/debian/rules @@ -5,13 +5,12 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -# This is the debhelper compatability version to use. -export DH_COMPAT=2 +TARGETDIR = debian/tmp +OCAML_STDLIB_DIR = $(shell ocamlc -where) configure: configure-stamp configure-stamp: dh_testdir - # Add here commands to configure the package. ./configure touch configure-stamp @@ -20,10 +19,8 @@ build: configure-stamp build-stamp build-stamp: dh_testdir - # Add here commands to compile the package. $(MAKE) - -$(MAKE) opt - #/usr/bin/docbook-to-man debian/lablgtkmathview.sgml > lablgtkmathview.1 + if [ -x /usr/bin/ocamlopt ]; then $(MAKE) opt; else true; fi touch build-stamp @@ -32,7 +29,6 @@ clean: dh_testroot rm -f build-stamp configure-stamp - # Add here commands to clean up after the build process. -$(MAKE) distclean dh_clean @@ -43,43 +39,27 @@ install: build dh_clean -k dh_installdirs - # Add here commands to install the package into debian/lablgtkmathview. - $(MAKE) install DESTDIR=$(CURDIR)/debian/lablgtkmathview/usr/lib/ocaml + mkdir -p $(TARGETDIR)$(OCAML_STDLIB_DIR) + $(MAKE) install PREFIX=$(TARGETDIR)$(OCAML_STDLIB_DIR) - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. binary-arch: build install + dh_install dh_testdir dh_testroot -# dh_installdebconf dh_installdocs dh_installexamples - dh_installmenu -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_installinit - dh_installcron - dh_installmanpages + dh_installman dh_installinfo -# dh_undocumented dh_installchangelogs ChangeLog dh_link dh_strip dh_compress dh_fixperms -# dh_makeshlibs dh_installdeb -# dh_perl dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +binary: binary-arch +.PHONY: build clean binary-arch binary install configure