summaryrefslogtreecommitdiff
path: root/packages/n/fetchmail/Makefile
blob: e8f7668395c2c2e075d7f38d8dd6785c37c7c0e7 (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://www.fetchmail.info/
# https://sourceforge.net/projects/fetchmail
#
# Downloads:
# =========
# https://downloads.sourceforge.net/fetchmail
#

url         = https://downloads.sourceforge.net/fetchmail

versions    = 6.4.1 6.4.17 6.4.37

pkg_name    = fetchmail
suffix      = tar.xz

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 version in $(versions) ; do \
	  major_minor=`echo $$version | sed 's/\([0-9][.][0-9]*\)\([\.].*\)/\1/'` ; \
	  wget -N $(url)/branch_$${major_minor}/$(pkg_name)-$$version.$(suffix) ; \
	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)