Codebase list c2050 / 30cb79f
Update build system to use simplified dh8 syntax. Marco Nenciarini 12 years ago
5 changed file(s) with 13 addition(s) and 80 deletion(s). Raw diff Collapse all Expand all
00 usr/bin
1 usr/share/man/man1
1 usr/share/man/man1
2 usr/share/apport/package-hooks
33 * Switch to dpkg-source 3.0 (quilt) format
44 * Add Homepage and Vcs-* control fields
55 * Bump standard version to 3.9.2.0; no changes required
6 * Update build system to use simplified dh8 syntax.
67
7 -- Marco Nenciarini <mnencia@debian.org> Mon, 30 May 2011 16:26:44 +0200
8 -- Marco Nenciarini <mnencia@debian.org> Mon, 30 May 2011 18:31:00 +0200
89
910 c2050 (0.3b-1ubuntu1) maverick; urgency=low
1011
11 Section: admin
22 Priority: extra
33 Maintainer: Marco Nenciarini <mnencia@debian.org>
4 Build-Depends: debhelper (>> 4.0.0)
4 Build-Depends: debhelper (>= 8.0.0)
55 Homepage: http://www.prato.linux.it/~mnencia/lexmark2050/
66 Vcs-Git: git://anonscm.debian.org/git/collab-maint/c2050.git
77 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/c2050.git
99
1010 Package: c2050
1111 Architecture: any
12 Depends: ${shlibs:Depends}, ghostscript
12 Depends: ${shlibs:Depends}, ${misc:Depends}, ghostscript
1313 Recommends: foomatic-db-compressed-ppds | foomatic-db
1414 Suggests: a2ps
1515 Description: Lexmark 2050 Color Jetprinter Linux Driver
00 #!/usr/bin/make -f
1 # Sample debian/rules that uses debhelper.
2 # GNU copyright 1997 to 1999 by Joey Hess.
1 # -*- makefile -*-
32
43 # Uncomment this to turn on verbose mode.
54 #export DH_VERBOSE=1
65
7 configure: configure-stamp
8 configure-stamp:
9 dh_testdir
10 # Add here commands to configure the package.
6 %:
7 dh $@
118
12 touch configure-stamp
13
14 build: configure-stamp build-stamp
15 build-stamp:
16 dh_testdir
17
18 # Add here commands to compile the package.
19 $(MAKE)
20 #/usr/bin/docbook-to-man debian/c2050.sgml > c2050.1
21
22 touch build-stamp
23
24 clean:
25 dh_testdir
26 dh_testroot
27 rm -f build-stamp configure-stamp
28
29 # Add here commands to clean up after the build process.
30 -$(MAKE) clean
31
32 dh_clean
33
34 install: build
35 dh_testdir
36 dh_testroot
37 dh_clean -k
38 dh_installdirs
39
40 # Add here commands to install the package into debian/c2050.
41 $(MAKE) install DESTDIR=$(CURDIR)/debian/c2050
42 install -D -m 644 debian/local/apport-hook.py $(CURDIR)/debian/c2050/usr/share/apport/package-hooks/source_c2050.py
43
44 # Build architecture-independent files here.
45 binary-indep: build install
46 # We have nothing to do by default.
47
48 # Build architecture-dependent files here.
49 binary-arch: build install
50 # dh_testversion 2
51 dh_testdir
52 dh_testroot
53 # dh_installdebconf
54 dh_installdocs
55 # dh_installexamples
56 # dh_installmenu
57 # dh_installemacsen
58 # dh_installpam
59 # dh_installinit
60 # dh_installcron
61 dh_installman
62 # dh_installinfo
63 # dh_undocumented
64 dh_installchangelogs
65 # dh_link
66 dh_strip
67 dh_compress
68 dh_fixperms
69 # # You may want to make some executables suid here.
70 # dh_suidregister
71 # dh_makeshlibs
72 dh_installdeb
73 # dh_perl
74 dh_shlibdeps
75 dh_gencontrol
76 dh_md5sums
77 dh_builddeb
78
79 binary: binary-indep binary-arch
80 .PHONY: build clean binary-indep binary-arch binary install configure
9 override_dh_install:
10 dh_install
11 cp debian/local/apport-hook.py debian/c2050/usr/share/apport/package-hooks/source_c2050.py