# # Project Home: # ============ # https://joe-editor.sourceforge.net # # Downloads: # ========= # https://downloads.sourceforge.net/project/joe-editor/JOE sources/joe-${VERSION} # url = https://downloads.sourceforge.net/project/joe-editor/JOE%20sources versions = 3.6 3.7 4.1 4.6 pkgname = joe 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-Z0-9-]*\)\([0-9][.0-9]*[.0-9]*\)\(\..*\)/\2/'` ; \ wget -N $(url)/$(pkgname)-$$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)