~ubuntu-branches/ubuntu/wily/mpm-itk/wily

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Steinar H. Gunderson
  • Date: 2013-11-07 19:52:22 UTC
  • Revision ID: package-import@ubuntu.com-20131107195222-0nqllwvx0fkznm4l
Tags: 2.4.6-01-1
Move back to being a separate package, now that mpm-itk can be built as a
module without any Apache source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
clean:
 
4
        dh_testdir
 
5
        dh_testroot
 
6
        [ ! -f Makefile ] || $(MAKE) distclean
 
7
        dh_clean
 
8
 
 
9
build: build-arch
 
10
build-indep:
 
11
build-arch:
 
12
        dh_testdir
 
13
        dh_auto_configure -- $(shell dpkg-buildflags --export=configure)
 
14
        $(MAKE)
 
15
 
 
16
binary-indep:
 
17
binary-arch:
 
18
        dh_testdir
 
19
        dh_testroot
 
20
        dh_prep
 
21
        dh_installdirs
 
22
        dh_install .libs/mpm_itk.so `apxs2 -q LIBEXECDIR`
 
23
        dh_installchangelogs 
 
24
        dh_installdocs
 
25
        dh_install
 
26
        dh_apache2
 
27
        dh_link
 
28
        dh_strip
 
29
        dh_compress
 
30
        dh_fixperms
 
31
        dh_installdeb
 
32
        dh_shlibdeps
 
33
        dh_gencontrol
 
34
        dh_md5sums
 
35
        dh_builddeb
 
36
 
 
37
binary: binary-indep binary-arch