~ubuntu-branches/ubuntu/natty/iselect/natty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Denis Barbier
  • Date: 2001-12-17 00:02:42 UTC
  • Revision ID: james.westby@ubuntu.com-20011217000242-smpz9z44fopf4sm1
Tags: 1.2.0-5
* New maintainer (closes: Bug#119088).
* Prevent crash with empty input (closes: Bug#81159).
* Make /usr/share/doc/iselect/examples/scvs/scvs work with Term::ANSIColor
  instead of Term::Cap, and another fix was applied to deal with new
  versions of File::PathConvert (closes: Bug#98547).
* Add a keystroke to clear marks (closes: Bug#63156).
* Upgraded to standards version 3.5.6
* Remove Emacs crap from debian/changelog

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
 
3
 
 
4
package = iselect
 
5
 
 
6
# Uncomment this to turn on verbose mode.
 
7
#export DH_VERBOSE=1
 
8
 
 
9
build: build-stamp
 
10
build-stamp:
 
11
        dh_testdir
 
12
        ./configure --prefix=/usr --mandir='$${prefix}/share/man'
 
13
        $(MAKE) 
 
14
        touch build-stamp
 
15
 
 
16
clean:
 
17
        dh_testdir
 
18
        dh_testroot
 
19
        rm -f build-stamp
 
20
        -$(MAKE) distclean
 
21
        dh_clean
 
22
 
 
23
# Build architecture-independent files here.
 
24
binary-indep: build
 
25
# There are no architecture-independent files to be uploaded
 
26
# generated by this package.  If there were any they would be
 
27
# made here.
 
28
 
 
29
# Build architecture-dependent files here.
 
30
binary-arch: build
 
31
        dh_testdir
 
32
        dh_testroot
 
33
        dh_clean -k
 
34
        dh_installdirs
 
35
 
 
36
        # Add here commands to install the files into debian/tmp
 
37
        $(MAKE) install prefix=`pwd`/debian/tmp/usr
 
38
 
 
39
        dh_installdocs README
 
40
#       dh_installmenu
 
41
#       dh_installinit
 
42
#       dh_installcron
 
43
#       dh_installmanpages
 
44
#       dh_undocumented
 
45
        dh_installchangelogs ChangeLog
 
46
        dh_strip
 
47
        dh_compress
 
48
 
 
49
        # We don't want to compress the perl scripts.  :-)
 
50
        dh_installexamples example/*
 
51
 
 
52
        dh_fixperms
 
53
        dh_installdeb
 
54
        dh_shlibdeps
 
55
        dh_gencontrol
 
56
#       dh_makeshlibs
 
57
        dh_md5sums
 
58
        dh_builddeb
 
59
 
 
60
source diff:
 
61
        @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
62
 
 
63
binary: binary-indep binary-arch
 
64
.PHONY: build clean binary-indep binary-arch binary