Release new version 0.17.1
[grml-hwinfo.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 include /usr/share/dpkg/pkg-info.mk
13
14 build: build-arch build-indep
15
16 build-arch: build-stamp
17
18 build-indep: build-stamp
19
20 build-stamp:
21         dh_testdir
22         egrep -q "^VERSION=.*UNRELEASED" grml-hwinfo || \
23           (echo "Wrong version in grml-hwinfo" && exit 2)
24         touch build-stamp
25
26 clean:
27         dh_testdir
28         dh_testroot
29         rm -f build-stamp
30         dh_clean
31
32 install: build
33         dh_testdir
34         dh_testroot
35         dh_prep
36         dh_installdirs
37
38         # Add here commands to install the package into debian/grml-hwinfo.
39         install -m 755 grml-hwinfo $(CURDIR)/debian/grml-hwinfo/usr/bin/
40         install -m 755 sysdump     $(CURDIR)/debian/grml-hwinfo/usr/bin/
41
42 # Build architecture-dependent files here.
43 binary-arch: build install
44 # We have nothing to do by default.
45
46 # Build architecture-independent files here.
47 binary-indep: build install
48         dh_testdir
49         dh_testroot
50         dh_installchangelogs
51         dh_installdocs
52         dh_installman grml-hwinfo.1 sysdump.8
53         sed -i -e "s/^VERSION='\*\*\*UNRELEASED\*\*\*'/VERSION='$(DEB_VERSION)'/" $(CURDIR)/debian/grml-hwinfo/usr/bin/grml-hwinfo
54         dh_link
55         dh_strip
56         dh_compress
57         dh_fixperms
58         dh_installdeb
59         dh_shlibdeps
60         dh_gencontrol
61         dh_md5sums
62         dh_builddeb
63
64 binary: binary-indep binary-arch
65 .PHONY: build clean binary-indep binary-arch binary install