~ubuntu-branches/ubuntu/dapper/smarty/dapper-updates

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Dimitri Fontaine
  • Date: 2004-04-16 17:41:20 UTC
  • Revision ID: james.westby@ubuntu.com-20040416174120-qb9ma0g419hkd25g
Tags: 2.6.2-2
* Adapted dependencies to allow running smarty with apache 2 (Closes: #241147)
* Prepared the template for i18n (Closes: #233098)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# Sample debian/rules that uses debhelper.
 
3
# GNU copyright 1997 to 1999 by Joey Hess.
 
4
 
 
5
# Uncomment this to turn on verbose mode.
 
6
#export DH_VERBOSE=1
 
7
 
 
8
clean:
 
9
        dh_clean
 
10
 
 
11
build:
 
12
 
 
13
install:
 
14
        dh_testdir
 
15
        dh_testroot
 
16
        dh_clean -k
 
17
        dh_installdirs
 
18
 
 
19
        # Add here commands to install the package into debian/smarty.
 
20
        $(MAKE) install DESTDIR=$(CURDIR)/debian/smarty
 
21
 
 
22
 
 
23
binary-indep: install
 
24
        dh_testdir
 
25
        dh_testroot
 
26
        dh_installchangelogs ChangeLog
 
27
        dh_installdocs
 
28
#       dh_installexamples
 
29
        dh_install
 
30
#       dh_installmenu
 
31
        dh_installdebconf       
 
32
#       dh_installlogrotate
 
33
#       dh_installemacsen
 
34
#       dh_installpam
 
35
#       dh_installmime
 
36
#       dh_installinit
 
37
#       dh_installcron
 
38
#       dh_installinfo
 
39
#       dh_installman
 
40
#       dh_link
 
41
#       dh_strip
 
42
        dh_compress
 
43
        dh_fixperms
 
44
#       dh_perl
 
45
#       dh_python
 
46
#       dh_makeshlibs
 
47
        dh_installdeb
 
48
#       dh_shlibdeps
 
49
        dh_gencontrol
 
50
        dh_md5sums
 
51
        dh_builddeb
 
52
 
 
53
binary-arch: install
 
54
 
 
55
binary: binary-indep binary-arch
 
56
.PHONY: clean binary-indep binary-arch binary install