~ubuntu-branches/ubuntu/intrepid/muse/intrepid

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-gyxa3yivcs3zh5fa
Tags: 0.5.2-1.2
* NMU.
* widgets/Makefile.in, widgets/Makefile.am: Remove broken rules to
  build files that aren't used anyway. Closes: #143985
* debian/control: More tiny formatting tweaks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# Uncomment this to turn on verbose mode.
 
3
export DH_VERBOSE=1
 
4
 
 
5
# This is the debhelper compatability version to use.
 
6
export DH_COMPAT=3
 
7
 
 
8
configure: configure-stamp
 
9
configure-stamp:
 
10
        dh_testdir
 
11
        # Add here commands to configure the package.
 
12
        ./configure --enable-oss --disable-qttest --disable-suid-build \
 
13
                --enable-patchbay --prefix=/usr --disable-shared
 
14
 
 
15
        touch configure-stamp
 
16
 
 
17
build: build-stamp
 
18
 
 
19
build-stamp: configure-stamp 
 
20
        dh_testdir
 
21
 
 
22
        # Add here commands to compile the package.
 
23
        $(MAKE)
 
24
 
 
25
        touch build-stamp
 
26
 
 
27
clean:
 
28
        dh_testdir
 
29
        dh_testroot
 
30
        rm -f build-stamp configure-stamp
 
31
 
 
32
        # Add here commands to clean up after the build process.
 
33
        -$(MAKE) clean
 
34
 
 
35
        dh_clean
 
36
 
 
37
install: build
 
38
        dh_testdir
 
39
        dh_testroot
 
40
        dh_clean -k
 
41
        dh_installdirs
 
42
 
 
43
        # Add here commands to install the package into debian/muse.
 
44
        $(MAKE) install DESTDIR=$(CURDIR)/debian/muse
 
45
 
 
46
 
 
47
# Build architecture-independent files here.
 
48
binary-indep: build install
 
49
# We have nothing to do by default.
 
50
 
 
51
# Build architecture-dependent files here.
 
52
binary-arch: build install
 
53
        dh_testdir
 
54
        dh_testroot
 
55
        dh_installdebconf       
 
56
        dh_installdocs
 
57
        dh_installexamples demos/rasen.med
 
58
        dh_installmenu
 
59
#       dh_installmime
 
60
#       dh_installman
 
61
        dh_installinfo
 
62
        dh_undocumented muse.1 grepmidi.1
 
63
        dh_installchangelogs ChangeLog
 
64
        dh_link
 
65
        dh_strip
 
66
        dh_compress
 
67
        dh_fixperms
 
68
#       dh_makeshlibs
 
69
        dh_installdeb
 
70
#       dh_perl
 
71
        dh_shlibdeps
 
72
        dh_gencontrol
 
73
        dh_md5sums
 
74
        dh_builddeb
 
75
 
 
76
binary: binary-indep binary-arch
 
77
.PHONY: build clean binary-indep binary-arch binary install configure
 
78
 
 
79
 
 
80
 
 
81