aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2021-04-11 15:26:42 +0100
committerMiquel Lionel <lionelmiquel@sfr.fr>2021-04-11 15:26:42 +0100
commit2cfc32611127be01a16c58cc01636cdcad089636 (patch)
treeb72dfc2d05db1455a52b4107efa6834874cb00f4 /Makefile
parentb8fc10a69c5be43a27e3d9421b47a22633879048 (diff)
downloadgpigeon-2cfc32611127be01a16c58cc01636cdcad089636.tar.gz
gpigeon-2cfc32611127be01a16c58cc01636cdcad089636.zip
Makefile and config.mk file added
- now installing should be as simple as running 'make' - the customizations and defaults goes in config.mk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile63
1 files changed, 63 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5089417
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,63 @@
+.POSIX:
+
+include config.mk
+
+install:
+ mkdir -p $(DESTDIR)$(PREFIX)/cookies
+ mkdir -p $(DESTDIR)$(_GPG_HOMEDIR)
+ chmod 700 $(DESTDIR)$(_GPG_HOMEDIR)
+ mkdir -p $(DESTDIR)$(WWWPREFIX)/cgi-bin/l
+ cp -f gpigeon-template.cgi $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
+ chmod 700 $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
+ if test -z '$(ARGON2ID_HASH)'; then \
+ perl genpass.pl > genpass.txt; \
+ ARGON2ID_HASH="`tail -1 genpass.txt`"; \
+ fi
+ sed -e 's|argon2id_hash_goes_here|$(ARGON2ID_HASH)|g' -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
+ sed -e "s|cookies_dir_goes_here|${PREFIX}/cookies|g" -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
+ sed -e "s|link_template_path_goes_here|$(LINK_TEMPLATE_PATH)|g" -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
+ sed -e "s|msg_char_limit_goes_here|$(MSG_FORM_CHAR_LIMIT)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH)
+ cp -f link-tmpl.cgi $(DESTDIR)$(LINK_TEMPLATE_PATH)
+ chmod 600 $(DESTDIR)$(LINK_TEMPLATE_PATH)
+ if test -n '$(MYMAIL_ADDR)'; then \
+ sed -e "s|your_addr_goes_here|$(MYMAIL_ADDR)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH); \
+ fi
+ if test -n '$(MYGPG_ID_0XLONG)'; then \
+ sed -e "s|gpgid_goes_here|$(MYGPG_ID_0XLONG)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH); \
+ gpg --armor --export $(MYGPG_ID_0XLONG) > gpg.txt; \
+ gpg --homedir "$(_GPG_HOMEDIR)" --import gpg.txt; \
+ fi
+ if test -n '$(MAILSENDER)'; then \
+ sed -e "s|sender_addr_goes_here|$(MAILSENDER)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH); \
+ fi
+ if test -n '$(SMTP_DOMAIN)'; then \
+ sed -e "s|smtp_domain_goes_here|$(SMTP_DOMAIN)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH); \
+ fi
+ if test -n '$(SMTP_PORT)'; then \
+ sed -e "s|smtp_port_goes_here|$(SMTP_PORT)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH); \
+ fi
+ if test -n '$(MAILSENDER_PW)'; then \
+ sed -e "s|sender_pw_goes_here|$(MAILSENDER_PW)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH); \
+ fi
+ sed -e "s|has_mailserver_goes_here|$(HAS_MAILSERVER)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH)
+ sed -e "s|gpg_homedir_goes_here|$(_GPG_HOMEDIR)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH)
+ cp -f styles.css $(DESTDIR)$(WWWPREFIX)
+ chmod 644 $(DESTDIR)$(WWWPREFIX)/styles.css
+ cp -f favicon.ico $(DESTDIR)$(WWWPREFIX)
+ chmod 644 $(DESTDIR)$(WWWPREFIX)/favicon.ico
+ cp -rf merci $(DESTDIR)$(PREFIX)
+ chmod 755 -R $(DESTDIR)$(PREFIX)
+ if test -e 'genpass.txt'; then \
+ printf "\n\nThe variable ARGON2ID_HASH wasn't declared thus a password and its argon2id hash as been generated (look into genpass.txt)."; \
+ printf "\nYour password is:\n`head -1 genpass.txt`\n\n\n"; \
+ rm -rf genpass.txt; \
+ fi
+
+uninstall:
+ rm -rf $(DESTDIR)$(PREFIX)
+ rm -rf $(DESTDIR)$(WWWPREFIX)
+
+clean:
+ rm -f genpass.txt gpg.txt
+
+.PHONY: clean install uninstall