summaryrefslogtreecommitdiff
path: root/dh_md5sums
diff options
context:
space:
mode:
authorjoey <joey>1999-08-17 04:34:24 +0000
committerjoey <joey>1999-08-17 04:34:24 +0000
commit1e6dea44772a0c1f57e7cd50ff12e35a1cff0b96 (patch)
tree212e56dc8ea32cf27cd2a33ac901a92a701f063f /dh_md5sums
parentface7b5d7df5fb2b8f434bc7135f27b38329a5c5 (diff)
r11: Initial revision
Diffstat (limited to 'dh_md5sums')
-rwxr-xr-xdh_md5sums22
1 files changed, 22 insertions, 0 deletions
diff --git a/dh_md5sums b/dh_md5sums
new file mode 100755
index 00000000..634e2fd6
--- /dev/null
+++ b/dh_md5sums
@@ -0,0 +1,22 @@
+#!/bin/sh -e
+#
+# Generate a DEBIAN/md5sums file, that lists the md5sums of all
+# non-conffiles in the package
+
+PATH=debian:$PATH:/usr/lib/debhelper
+. dh_lib
+
+for PACKAGE in $DH_DOPACKAGES; do
+ TMP=`tmpdir $PACKAGE`
+
+ if [ ! -d "debian/$TMP/DEBIAN" ]; then
+ doit "install -d debian/$TMP/DEBIAN"
+ fi
+
+ doit "pushd debian/$TMP" >/dev/null
+ # Doit isn't smart enough to hande this next command so echo by hand. (sigh)
+ verbose_echo 'md5sum `find * -type f ! -regex "^DEBIAN/.*"` > DEBIAN/md5sums </dev/null'
+ md5sum `find * -type f ! -regex "^DEBIAN/.*"` >DEBIAN/md5sums </dev/null
+ doit "chown root.root DEBIAN/md5sums"
+ doit "popd 2>/dev/null" >/dev/null
+done