+++ /dev/null
-all:
-
-clean:
-
-install: all
- mkdir -p $(DESTDIR)/usr/bin
- mkdir -p $(DESTDIR)/usr/sbin
- mkdir -p $(DESTDIR)/var
- mkdir -p usr/share/lintian/overrides
- cp -p curcy $(DESTDIR)/usr/bin
- cp -p curcy-update $(DESTDIR)/usr/sbin
- cp -p currencies $(DESTDIR)/var
- cp -rp usr $(DESTDIR)
+curcy (0.1.4) UNRELEASED; urgency=low
+
+ * Now using simplier debian/install system instead of Makefile
+ * cron no longer crashes when package has been removed, but not purged
+ * Ignore .svn files
+
+ -- Nirgal Vourgère <jmv_deb@nirgal.com> Mon, 10 Mar 2008 16:43:06 +0100
+
curcy (0.1.3) UNRELEASED; urgency=low
* Fixed man page encoding of non ascii characters
Priority: optional
Maintainer: Jean-Michel Vourgère <jmv_deb@nirgal.com>
Build-Depends: debhelper (>> 3.0.0)
-Standards-Version: 3.7.2.2
+Standards-Version: 3.7.3
Package: curcy
Section: misc
#!/bin/sh
-/usr/sbin/update-curcy
+
+# Test whether the file is still ok
+# It's not true when the package has been removed, but not purged
+test -x /usr/sbin/update-curcy && /usr/sbin/update-curcy
--- /dev/null
+/curcy /usr/bin/
+/curcy-update /usr/sbin/
+/currencies /var
+/usr /
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-CFLAGS = -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
- CFLAGS += -O0
-else
- CFLAGS += -O2
-endif
+#CFLAGS = -g
+#ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+# CFLAGS += -O0
+#else
+# CFLAGS += -O2
+#endif
build: build-stamp
build-stamp:
dh_testdir
# Add here commands to compile the package.
- -$(MAKE)
+ #-$(MAKE)
#docbook-to-man debian/gentoo.sgml > gentoo.1
touch build-stamp
rm -f build-stamp
# Add here commands to clean up after the build process.
- $(MAKE) clean
+ #$(MAKE) clean
dh_clean
dh_installdirs
# Add here commands to install the package into debian/curcy.
- $(MAKE) install DESTDIR=$(CURDIR)/debian/curcy
+ #$(MAKE) install DESTDIR=$(CURDIR)/debian/curcy
# Build architecture-independent files here.
binary-indep: build install
binary-arch: build install
dh_testdir
dh_testroot
+ dh_install -X.svn
# dh_installdebconf
dh_installdocs
dh_installexamples