annotate debian/rules @ 21:3ce5429cd219

removed unneeded stuff in debian/rules
author meillo@marmaro.de
date Sat, 10 May 2008 21:48:21 +0200
parents 27f96c3b8224
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
1 #!/usr/bin/make -f
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
2 # -*- makefile -*-
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
3 # Sample debian/rules that uses debhelper.
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
4 # This file was originally written by Joey Hess and Craig Small.
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
5 # As a special exception, when this file is copied by dh-make into a
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
6 # dh-make output file, you may use that output file without restriction.
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
8
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
9 # Uncomment this to turn on verbose mode.
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
10 #export DH_VERBOSE=1
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
11
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
12
12
27f96c3b8224 fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents: 9
diff changeset
13 build:
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
14
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
15 clean:
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
16 dh_testdir
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
17 dh_testroot
21
3ce5429cd219 removed unneeded stuff in debian/rules
meillo@marmaro.de
parents: 12
diff changeset
18 dh_clean
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
19
12
27f96c3b8224 fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents: 9
diff changeset
20 install:
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
21 dh_testdir
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
22 dh_testroot
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
23 dh_installdirs
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
24
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
25 # Add here commands to install the package into debian/genwebgallery.
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
26 $(MAKE) DESTDIR=$(CURDIR)/debian/genwebgallery install
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
27
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
28
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
29 # Build architecture-independent files here.
12
27f96c3b8224 fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents: 9
diff changeset
30 binary-indep: install
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
31 dh_testdir
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
32 dh_testroot
9
626dacb5193e fixed installation of changelog in package
meillo@marmaro.de
parents: 0
diff changeset
33 dh_installchangelogs ChangeLog
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
34 dh_installdocs
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
35 dh_installman
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
36 dh_compress
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
37 dh_fixperms
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
38 dh_installdeb
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
39 dh_gencontrol
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
40 dh_md5sums
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
41 dh_builddeb
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
42
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
43 # Build architecture-dependent files here.
12
27f96c3b8224 fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents: 9
diff changeset
44 binary-arch:
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
45
21
3ce5429cd219 removed unneeded stuff in debian/rules
meillo@marmaro.de
parents: 12
diff changeset
46 binary: binary-indep binary-arch
12
27f96c3b8224 fixed hyphen-minus-conflict in man page; refactored debian/rules (removed a lot)
meillo@marmaro.de
parents: 9
diff changeset
47
0
9f4fa0bc1584 initial commit
meillo@marmaro.de
parents:
diff changeset
48 .PHONY: build clean binary-indep binary-arch binary install configure