summaryrefslogtreecommitdiff
path: root/packages/a/dialog/Makefile
blob: 2bfbf2ecc4f1b7a5c59bc933ab2f1c56fc2b8231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Project Home:
# ============
#   https://invisible-island.net/dialog
#
# Downloads:
# =========
#   ftp://ftp.invisible-island.net/dialog
#   https://invisible-mirror.net/archives/dialog
#

url          = https://invisible-mirror.net/archives/dialog

versions     = 1.1-20120215 1.1-20120706 1.2-20140112 1.2-20140219 1.2-20150920
versions    += 1.3-20170131 1.3-20170509 1.3-20181107 1.3-20190211 1.3-20190808
versions    += 1.3-20201126 1.3-20210117 1.3-20210621 1.3-20211214 1.3-20230209
versions    += 1.3-20231002 1.3-20240101
suffix       = tgz

tarballs     = $(addsuffix .$(suffix), $(addprefix dialog-, $(versions)))
sha1s        = $(addsuffix .sha1sum, $(tarballs))


all: $(tarballs) $(sha1s)

.PHONY: downloads_clean

$(tarballs):
	@echo -e "\n======= Downloading source tarballs =======\n"
	@for tarball in $(tarballs) ; do \
	  wget -N $(url)/$$tarball ; \
	done

$(sha1s): %.$(suffix).sha1sum : %.$(suffix)
	@for tarball in $< ; do \
	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
	done

downloads_clean:
	@rm -rf $(tarballs) $(sha1s)