Radix cross Linux 3pp sources

RcL sources – is a tree of Third Party and Radix source tarballs

343 Commits   0 Branches   0 Tags
#
# Project Home:
# ============
#   https://github.com/liberationfonts/liberation-fonts
#
# Downloads:
# =========
#   https://github.com/liberationfonts/liberation-fonts/releases
#
# GitHub:
# ======
#   git clone https://github.com/liberationfonts/liberation-fonts.git
#   https://ftp.radix.pro/3pp/fonts/liberation
#

url         = https://ftp.radix.pro/3pp/fonts/liberation

versions    = 2.1.5

pkg_name    = liberation-fonts-ttf
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 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)