summaryrefslogtreecommitdiff
path: root/packages/x/xfce/Xfconf/Makefile
blob: 7fccf77845f235cbf46d7b6bd0db0ba7b04c59fa (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
#
# Project Home:
# ============
#   https://www.xfce.org
#
# Downloads:
# =========
#   https://archive.xfce.org/src/xfce/xfconf/4.18
#

url         = https://archive.xfce.org/src/xfce

versions    = 4.18.3

pkgname     = xfconf
suffix      = tar.bz2

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