~oh-dev/openhealth/phit-tools

« back to all changes in this revision

Viewing changes to ihris-suite/lib/i2ce/tests/I2CE_PackagerTest/i2ce-files-test/debian/rules

  • Committer: litlfred at ibiblio
  • Date: 2009-10-26 13:55:16 UTC
  • Revision ID: litlfred@ibiblio.org-20091026135516-7er0260tad01febt
ihris suite updated to 4.0.1 pre-release...
follows that did not get added on the last attempt did this time... the problem is that bzr does not like to include branches in a sub-directory even if you add them in which 
  is how ihris-suite/lib/* was structed.  so i had to move ihris-suite/lib/*/.bzr to ihris-suite/lib/*/.bzr_dir to trick it
the site will now succesfully install.  have not attempted change the root drive letter yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# -*- makefile -*-
 
3
 
 
4
# Uncomment this to turn on verbose mode.
 
5
#export DH_VERBOSE=1
 
6
 
 
7
PKG=$(shell dpkg-parsechangelog | awk ‘/^Source:/ {print $2}’)
 
8
VERSION=$(shell dpkg-parsechangelog | awk ‘/^Version:/ {print $2}’)
 
9
 
 
10
TOP=$(CURDIR)/debian/$(PKG)
 
11
 
 
12
configure: configure-stamp
 
13
configure-stamp:
 
14
        dh_testdir
 
15
 
 
16
        touch $@
 
17
 
 
18
build: build-stamp
 
19
build-stamp: configure-stamp 
 
20
        dh_testdir
 
21
 
 
22
        touch $@
 
23
 
 
24
clean:
 
25
        dh_testdir
 
26
        dh_testroot
 
27
        rm -f *-stamp
 
28
 
 
29
        dh_clean 
 
30
 
 
31
install: build
 
32
        dh_testdir
 
33
        dh_testroot
 
34
        dh_prep
 
35
        dh_installdirs
 
36
 
 
37
# Build architecture-independent files here.
 
38
binary-indep: build install
 
39
        dh_testdir
 
40
        dh_testroot
 
41
        dh_installchangelogs 
 
42
        dh_installdocs
 
43
        dh_installexamples
 
44
        dh_install
 
45
        dh_installmenu
 
46
        dh_installdebconf       
 
47
        dh_installlogrotate
 
48
        dh_installmime
 
49
        dh_installman
 
50
        dh_link
 
51
        dh_compress
 
52
        dh_fixperms
 
53
        dh_makeshlibs
 
54
        dh_installdeb
 
55
        dh_shlibdeps
 
56
        dh_gencontrol
 
57
        dh_md5sums
 
58
        dh_builddeb
 
59
 
 
60
binary: binary-indep
 
61
.PHONY: build clean binary-indep binary-arch binary install configure