blob: adbcaf644a7ce32ca3cdf7f3e4ad394b7fae8f0c (
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://bugseng.com/products/ppl/
#
# Downloads:
# =========
# ftp://ftp.cs.unipr.it/pub/ppl/releases/
# https://www.bugseng.com/products/ppl/download/ftp/releases/
#
url = https://www.bugseng.com/products/ppl/download/ftp/releases
versions = 1.0 1.1 1.2
tarballs = $(addsuffix .tar.xz, $(addprefix ppl-, $(versions)))
sha1s = $(addsuffix .sha1sum, $(tarballs))
all: $(tarballs) $(sha1s)
.PHONY: downloads_clean
$(tarballs):
@echo -e "\n======= Downloading source tarballs =======\n"
@for tarball in $(tarballs) ; do \
version=`echo $$tarball | sed 's/\([a-zA-Z-]*\)\(.*\)\(.tar.*\)/\2/'` ; \
wget -N $(url)/$$version/$$tarball ; \
done
$(filter %.tar.xz.sha1sum,$(sha1s)): %.tar.xz.sha1sum : %.tar.xz
@for tarball in $< ; do \
echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
sha1sum --binary $$tarball > $$tarball.sha1sum ; \
done
downloads_clean:
@rm -rf $(tarballs) $(sha1s)
|