1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
6 ###############################################################################
8 ###############################################################################
14 THISAPP = sendEmail-v$(VER)
15 DL_FILE = $(THISAPP).tar.gz
16 DL_FROM = $(URL_IPFIRE)
17 DIR_APP = $(DIR_SRC)/$(THISAPP)
18 TARGET = $(DIR_INFO)/$(THISAPP)
24 ###############################################################################
26 ###############################################################################
30 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
32 $(DL_FILE)_MD5 = 5b7bec4373268fa6446fa59416bb99fb
36 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
38 download :$(patsubst %,$(DIR_DL)/%,$(objects))
40 md5 : $(subst %,%_MD5,$(objects))
45 ###############################################################################
46 # Downloading, checking, md5sum
47 ###############################################################################
49 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
52 $(patsubst %,$(DIR_DL)/%,$(objects)) :
55 $(subst %,%_MD5,$(objects)) :
58 ###############################################################################
59 # Installation Details
60 ###############################################################################
62 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
64 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
65 cd $(DIR_APP) && cp -pvf sendEmail /usr/local/bin
66 chmod 755 /usr/local/bin/sendEmail