Update of /cvsroot/simplemail/simplemail/tests
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27455
Modified Files:
makefile
Log Message:
Added dovecot sha1sum check.
Index: makefile
===================================================================
RCS file: /cvsroot/simplemail/simplemail/tests/makefile,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- makefile 22 Feb 2014 12:36:25 -0000 1.48
+++ makefile 22 Feb 2014 14:04:23 -0000 1.49
@@ -74,12 +74,14 @@
# Dovecot support
DOVECOT_URL=http://www.dovecot.org/releases/2.2/dovecot-2.2.9.tar.gz
DOVECOT_TGZ=$(notdir $(DOVECOT_URL))
+DOVECOT_SHA1SUM=efba4dee63c7dab2b9950e51874a86ba17e09d0c
DOVECOT_DIR=$(DOVECOT_TGZ:%.tar.gz=%)
DOVECOT_ABSDIR=$(shell pwd)/$(DOVECOT_DIR)
DOVECOT=$(DOVECOT_DIR)-root/sbin/dovecot
$(DOVECOT_TGZ):
wget -N $(DOVECOT_URL)
+ echo "$(DOVECOT_SHA1SUM) $(DOVECOT_TGZ)" | sha1sum -c
$(DOVECOT_DIR)-root: $(DOVECOT_TGZ)
rm -Rf $(DOVECOT_DIR)
|