From f538fec4adcbadc9c366ed6ba33af0358756f342 Mon Sep 17 00:00:00 2001 From: kx Date: Sun, 21 Jan 2024 04:25:25 +0300 Subject: gimp-help-2.10.34 --- packages/x/Makefile | 1 + packages/x/gimp-help/Makefile | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 packages/x/gimp-help/Makefile diff --git a/packages/x/Makefile b/packages/x/Makefile index 0d12775..d068575 100644 --- a/packages/x/Makefile +++ b/packages/x/Makefile @@ -26,6 +26,7 @@ SUBDIRS := Vulkan \ gegl \ geoclue \ gimp \ + gimp-help \ gimp3 \ glew \ glu \ diff --git a/packages/x/gimp-help/Makefile b/packages/x/gimp-help/Makefile new file mode 100644 index 0000000..5f32d74 --- /dev/null +++ b/packages/x/gimp-help/Makefile @@ -0,0 +1,39 @@ +# +# Project Home: +# ============ +# https://docs.gimp.org/ +# +# Downloads: +# ========= +# https://ftp.gimp.org/pub/gimp/help/ +# + +url = https://ftp.gimp.org/pub/gimp/help + +versions = 2.10.34 + +pkgname = gimp-help +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 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) -- cgit v1.2.3