summaryrefslogtreecommitdiff
path: root/GNU/help2man/Makefile
blob: c4d2a0dd32672c02597976bd0358dabe5d284a32 (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
#
# Project Home:
# ============
# https://www.gnu.org/software/help2man
#
# Downloads:
# =========
# https://ftp.gnu.org/gnu/help2man
#

url         = https://ftp.gnu.org/gnu/help2man

versions    = 1.46.6 1.47.3 1.47.11 1.47.16 1.48.5 1.49.2 1.49.3

pkgname     = help2man
suffix      = tar.xz

tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(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)