summaryrefslogtreecommitdiff
path: root/packages/l/libpsl/Makefile
blob: 5679999470bcdc7c67115ba1c5e7b8eb06861054 (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
42
43
44
45
46
47
48
#
# Project Home:
# ============
# https://github.com/rockdaboot/libpsl
#
# GitHub:
# ======
# https://github.com/rockdaboot/libpsl
#
# Download:
# ========
# https://github.com/rockdaboot/libpsl/releases/download/${VERSION}/libpsl-${VERSION}.tar.gz
#
# Clone:
# =====
# https://github.com/rockdaboot/libpsl.git
#

url        = https://github.com/rockdaboot

versions    = 0.21.1

pkgname     = libpsl
suffix      = tar.gz

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 \
	  version=`echo $$tarball | sed 's/\([a-zA-Z-]*\)\([0-9][.][0-9]*[.][0-9]*\)\([\.].*\)/\2/'` ; \
	  wget -N $(url)/$(pkgname)/releases/download/$${version}/$${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)