summaryrefslogtreecommitdiff
path: root/packages/a/file/Makefile
blob: d042a8be3f7efb362f5694b7c037dd2b31c75de5 (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
#
# Project Home:
# ============
#   https://www.darwinsys.com/file
#
# Downloads:
# =========
#   ftp://ftp.astron.com/pub/file
#

url         = ftp://ftp.astron.com/pub/file

versions    = 5.14 5.15 5.18 5.19 5.25 5.28 5.39 5.44

pkg_name    = file
suffix      = tar.gz

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