Codebase list datefudge / 5cb3a4f
New maintainer (closes: #429467). * New maintainer (closes: #429467). * Standards-Version: 3.7.3 (no changes). * Use debhelper v7 and its minimised rules file. Robert Luberda 16 years ago
5 changed file(s) with 23 addition(s) and 53 deletion(s). Raw diff Collapse all Expand all
0 datefudge (1.14) UNRELEASED; urgency=low
1
2 * New maintainer (closes: #429467).
3 * Standards-Version: 3.7.3 (no changes).
4 * Use debhelper v7 and its minimised rules file.
5
6 -- Robert Luberda <robert@debian.org> Tue, 06 May 2008 22:20:52 +0200
7
08 datefudge (1.13) unstable; urgency=low
19
210 * QA upload.
00 Source: datefudge
11 Section: devel
22 Priority: optional
3 Maintainer: Debian QA Group <packages@qa.debian.org>
4 Standards-Version: 3.7.2
5 Build-Depends: debhelper (>= 5)
3 Maintainer: Robert Luberda <robert@debian.org>
4 Standards-Version: 3.7.3
5 Build-Depends: debhelper (>= 7)
66
77 Package: datefudge
88 Architecture: any
11 on Mon, 21 Oct 2002 12:53:59 +0200.
22
33 The original source can always be found at:
4 ftp://ftp.debian.org/dists/unstable/main/source/
4 ftp://ftp.debian.org/debian/pool/main/d/datefudge/
55
66 Copyright (C) 2002 Matthias Urlichs
77
00 #!/usr/bin/make -f
1 # This file is public domain software, originally written by Joey Hess.
21
3 # Uncomment this to turn on verbose mode.
4 #export DH_VERBOSE=1
5
6 export CFLAGS = -g -Wall
7 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
8 CFLAGS += -O0
9 else
10 CFLAGS += -O2
11 endif
12
13 build: build-stamp
14 build-stamp:
15 dh_testdir
16
17 $(MAKE)
18
19 touch build-stamp
2 build:
3 dh build
204
215 clean:
22 dh_testdir
23 dh_testroot
24 rm -f build-stamp
25
26 $(MAKE) clean
27
28 dh_clean
6 dh clean
297
308 install: build
31 dh_testdir
32 dh_testroot
33 dh_clean -k
34 dh_installdirs
9 dh install
3510
36 $(MAKE) install DESTDIR=$(CURDIR)/debian/datefudge
11 binary-arch: install
12 dh binary-arch
3713
38 binary-indep: build install
14 binary-indep: install
15 dh binary-indep
3916
40 binary-arch: build install
41 dh_testdir
42 dh_testroot
43 dh_installchangelogs
44 dh_installdocs README
45 dh_installman
46 dh_link
47 dh_strip
48 dh_compress
49 dh_fixperms
50 dh_installdeb
51 dh_shlibdeps
52 dh_gencontrol
53 dh_md5sums
54 dh_builddeb
17 binary: binary-arch binary-indep
5518
56 binary: binary-indep binary-arch
57 .PHONY: build clean binary-indep binary-arch binary install
19 .PHONY: build clean install binary-arch binary-indep binary