Radix cross Linux 3pp sources

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

423 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-04-09 03:24:10 +0300 committer: kx <kx@radix.pro> 2023-04-09 03:24:10 +0300 commit: 3dd1914515dc5c714451bc4148f0abb51672ed06 parent: c0eee091446a07e56576b7d855dd09f0da9968c8
Commit Summary:
libraries
Diffstat:
1 file changed, 143 insertions, 0 deletions
diff --git a/packages/l/Makefile b/packages/l/Makefile
new file mode 100644
index 0000000..bcacf05
--- /dev/null
+++ b/packages/l/Makefile
@@ -0,0 +1,150 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := aalib               \
+           apr                 \
+           apr-util            \
+           argon2              \
+           assimp              \
+           boost               \
+           botan               \
+           brotli              \
+           cairo               \
+           cracklib            \
+           cracklib-words      \
+           dbus-glib           \
+           dbus-python         \
+           editline            \
+           elfutils            \
+           enchant             \
+           expat               \
+           fftw                \
+           freetype            \
+           fribidi             \
+           gamin               \
+           gc                  \
+           giflib              \
+           graphene            \
+           graphite2           \
+           harfbuzz            \
+           hdf5                \
+           hidapi              \
+           hwids               \
+           hwloc               \
+           icu4c               \
+           ieee1394            \
+           ijs                 \
+           imlib               \
+           imlib2              \
+           imlib2_loaders      \
+           isl                 \
+           iso-codes           \
+           jansson             \
+           jbig2dec            \
+           jemalloc            \
+           json-c              \
+           judy                \
+           keyutils            \
+           lcms2               \
+           liba52              \
+           libaio              \
+           libarchive          \
+           libasyncns          \
+           libatomic_ops       \
+           libbsd              \
+           libcaca             \
+           libcap              \
+           libcap-ng           \
+           libdaemon           \
+           libdatrie           \
+           libedit             \
+           libevent            \
+           libffi              \
+           libgphoto2          \
+           libical             \
+           libieee1284         \
+           libiodbc            \
+           libjpeg             \
+           libjpeg-6a          \
+           libjpeg-turbo       \
+           libmd               \
+           libmng              \
+           libpipeline         \
+           libpng              \
+           libpsl              \
+           libsodium           \
+           libspectre          \
+           libssh              \
+           libssh2             \
+           libstrophe          \
+           libthai             \
+           libtiff             \
+           libunwind           \
+           liburing            \
+           libusb              \
+           libusb-compat       \
+           libuv               \
+           libvisual           \
+           libxml2             \
+           libxslt             \
+           libyaml             \
+           libzip              \
+           log4cplus           \
+           lz4                 \
+           lzlib               \
+           lzo                 \
+           md4c                \
+           netpbm              \
+           netpbm-doc          \
+           netpbm-super-stable \
+           newt                \
+           oniguruma           \
+           openmpi             \
+           pciids              \
+           pcre                \
+           pcre2               \
+           polkit              \
+           poppler             \
+           poppler-data        \
+           popt                \
+           ppl                 \
+           pycairo             \
+           pycups              \
+           pycurl              \
+           pyrex               \
+           sbc                 \
+           sdl                 \
+           serf                \
+           sg3_utils           \
+           shared-mime-info    \
+           slang               \
+           termcap-compat      \
+           tidy-html5          \
+           tslib               \
+           unidata             \
+           usbids              \
+           utf8proc            \
+           v4l-utils           \
+           zeromq              \
+           zlib                \
+           zstd
+
+
+all-recursive downloads_clean-recursive:
+	@set fnord $(MAKEFLAGS); amf=$$2; \
+	target=`echo $@ | sed s/-recursive//`; \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  echo "Making $$target in $$subdir"; \
+	  local_target="$$target"; \
+	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
+	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+	done; test -z "$$fail"
+
+all: all-recursive
+
+downloads_clean: downloads_clean-recursive
+
+.PHONY: all-recursive downloads_clean-recursive all downloads_clean