Merge pull request #1602 from LuaAndC/pkg-dscr-in-mk

Move package metadata from index.html to src/*.mk
This commit is contained in:
Boris Nagaev 2016-12-23 11:53:56 -08:00 committed by GitHub
commit 9fb153c4f1
434 changed files with 1206 additions and 2269 deletions

View File

@ -2,7 +2,7 @@ language: c
sudo: false
script:
- make docs/build-matrix.html docs/versions.json
- make docs/build-matrix.html docs/packages.json OS_SHORT_NAME=disable-native-plugins
- if [ "$GH_TOKEN" != "" ]; then ./tools/travis-push.sh; fi
- make download -j 6 -k MXE_PLUGIN_DIRS="$(./tools/plugins-with-additional-packages.sh)"

View File

@ -49,8 +49,6 @@ GIT_HEAD := $(shell git rev-parse HEAD)
TIMESTAMP := $(shell date +%Y%m%d_%H%M%S)
PKG_DIR := $(PWD)/pkg
TMP_DIR = $(MXE_TMP)/tmp-$(1)
PKGS := $(call set_create,\
$(shell $(SED) -n 's/^.* class="package">\([^<]*\)<.*$$/\1/p' '$(TOP_DIR)/docs/index.html'))
BUILD := $(shell '$(EXT_DIR)/config.guess')
PATH := $(PREFIX)/$(BUILD)/bin:$(PREFIX)/bin:$(PATH)
@ -60,10 +58,9 @@ STRIP_LIB := $(false)
STRIP_EXE := $(true)
# All pkgs have (implied) order-only dependencies on MXE_CONF_PKGS.
# These aren't meaningful to the pkg list in docs/index.html so
# These aren't meaningful to the pkg list in http://mxe.cc/#packages so
# use a list in case we want to separate autotools, cmake etc.
MXE_CONF_PKGS := mxe-conf
PKGS += $(MXE_CONF_PKGS)
# define some whitespace variables
define newline
@ -196,11 +193,11 @@ UNPACK_PKG_ARCHIVE = \
# some shortcuts for awareness of MXE_PLUGIN_DIRS
# all files for extension plugins will be considered for outdated checks
PKG_MAKEFILES = $(realpath $(sort $(wildcard $(addsuffix /$(1).mk, $(TOP_DIR)/src $(MXE_PLUGIN_DIRS)))))
PKG_TESTFILES = $(realpath $(sort $(wildcard $(addsuffix /$(1)-test*, $(TOP_DIR)/src $(MXE_PLUGIN_DIRS)))))
PKG_MAKEFILES = $(realpath $(sort $(wildcard $(addsuffix /$(1).mk, $(MXE_PLUGIN_DIRS)))))
PKG_TESTFILES = $(realpath $(sort $(wildcard $(addsuffix /$(1)-test*, $(MXE_PLUGIN_DIRS)))))
# allow packages to specify a list of zero or more patches
PKG_PATCHES = $(if $(findstring undefined,$(origin $(1)_PATCHES)), \
$(realpath $(sort $(wildcard $(addsuffix /$(1)-[0-9]*.patch, $(TOP_DIR)/src $(MXE_PLUGIN_DIRS))))) \
$(realpath $(sort $(wildcard $(addsuffix /$(1)-[0-9]*.patch, $(MXE_PLUGIN_DIRS))))) \
$(else), \
$($(1)_PATCHES))
@ -310,14 +307,8 @@ endif
LIST_NMAX = $(shell echo '$(strip $(1))' | tr ' ' '\n' | sort -n | tail -1)
LIST_NMIN = $(shell echo '$(strip $(1))' | tr ' ' '\n' | sort -n | head -1)
NPROCS := $(shell nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 1)
JOBS_AUTO := $(call LIST_NMIN, $(DEFAULT_MAX_JOBS) $(NPROCS))
JOBS := $(strip $(if $(findstring undefined,$(origin JOBS)),\
$(if $(and $(MAKECMDGOALS),$(filter $(MAKECMDGOALS),$(PKGS))), \
$(info [using autodetected $(JOBS_AUTO) job(s)])) \
$(JOBS_AUTO)\
,\
$(JOBS)))
NPROCS := $(shell nproc 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 1)
JOBS := $(call LIST_NMIN, $(DEFAULT_MAX_JOBS) $(NPROCS))
# cache some target string manipulation functions
# `memoize` and `uc` from gmsl
@ -347,6 +338,9 @@ LOOKUP_PKG_RULE = $(strip \
.PHONY: all
all: all-filtered
# Core packages.
override MXE_PLUGIN_DIRS += $(realpath $(TOP_DIR)/src)
# Build native requirements for certain systems
OS_SHORT_NAME := $(call lc,$(shell lsb_release -sc 2>/dev/null || uname -s))
override MXE_PLUGIN_DIRS += $(realpath $(TOP_DIR)/plugins/native/$(OS_SHORT_NAME))
@ -394,12 +388,6 @@ $(PREFIX)/installed/print-git-oneline-$(GIT_HEAD): | $(PREFIX)/installed/.gitkee
@rm -f '$(PREFIX)/installed/print-git-oneline-'*
@touch '$@'
# include core MXE packages and set base filenames
include $(patsubst %,$(TOP_DIR)/src/%.mk,$(PKGS))
$(foreach PKG,$(PKGS),\
$(eval $(PKG)_MAKEFILE := $(realpath $(TOP_DIR)/src/$(PKG).mk)) \
$(eval $(PKG)_TEST_FILE := $(realpath $(wildcard $(TOP_DIR)/src/$(PKG)-test.*))))
# include files from MXE_PLUGIN_DIRS, set base filenames and `all-<plugin>` target
PLUGIN_FILES := $(realpath $(wildcard $(addsuffix /*.mk,$(MXE_PLUGIN_DIRS))))
PLUGIN_PKGS := $(basename $(notdir $(PLUGIN_FILES)))
@ -408,7 +396,7 @@ $(foreach FILE,$(PLUGIN_FILES),\
$(eval $(basename $(notdir $(FILE)))_TEST_FILE ?= $(wildcard $(basename $(FILE))-test.*)) \
$(eval all-$(lastword $(call split,/,$(dir $(FILE)))): $(basename $(notdir $(FILE)))))
include $(PLUGIN_FILES)
PKGS := $(sort $(PKGS) $(PLUGIN_PKGS))
PKGS := $(sort $(MXE_CONF_PKGS) $(PLUGIN_PKGS))
# create target sets for PKG_TARGET_RULE loop to avoid creating empty rules
# and having to explicitly disable $(BUILD) for most packages
@ -593,7 +581,7 @@ build-only-$(1)_$(3):
$$(if $(value $(call LOOKUP_PKG_RULE,$(1),FILE,$(3))),\
$$(call PREPARE_PKG_SOURCE,$(1),$(2)))
$$(call $(call LOOKUP_PKG_RULE,$(1),BUILD,$(3)),$(2)/$($(1)_SUBDIR),$(TOP_DIR)/src/$(1)-test)
$$(call $(call LOOKUP_PKG_RULE,$(1),BUILD,$(3)),$(2)/$($(1)_SUBDIR))
@echo
@find '$(2)' -name 'config.log' -print -exec cat {} \;
@echo
@ -656,7 +644,7 @@ show-deps-%:
$(newline)$(newline)$* downstream dependents:$(newline)\
$(call WALK_DOWNSTREAM,$*))\
@echo,\
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
# show upstream dependencies and downstream dependents separately
# suitable for usage in shell with: `make show-downstream-deps-foo`
@ -666,14 +654,14 @@ show-downstream-deps-%:
$(call SET_CLEAR,PKGS_VISITED)\
$(info $(call WALK_DOWNSTREAM,$*))\
@echo -n,\
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
show-upstream-deps-%:
$(if $(call set_is_member,$*,$(PKGS)),\
$(call SET_CLEAR,PKGS_VISITED)\
$(info $(call WALK_UPSTREAM,$*))\
@echo -n,\
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
# print first level pkg deps for use in build-pkg.lua
.PHONY: print-deps-for-build-pkg
@ -731,13 +719,13 @@ update:
update-package-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(and $($*_UPDATE),$(call UPDATE,$*,$(shell $($*_UPDATE)))), \
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
update-checksum-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(call DOWNLOAD_PKG_ARCHIVE,$*) && \
$(SED) -i 's/^\([^ ]*_CHECKSUM *:=\).*/\1 '"`$(call PKG_CHECKSUM,$*)`"'/' '$($*_MAKEFILE)', \
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
.PHONY: cleanup-style
define CLEANUP_STYLE
@ -864,12 +852,14 @@ docs/build-matrix.html: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
@echo '</body>' >> $@
@echo '</html>' >> $@
.PHONY: docs/versions.json
docs/versions.json: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
.PHONY: docs/packages.json
docs/packages.json: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
@echo '{' > $@
@{$(foreach PKG,$(PKGS), \
echo ' "$(PKG)": \
"$($(PKG)_VERSION)",';)} >> $@
{"version": "$($(PKG)_VERSION)", \
"website": "$($(PKG)_WEBSITE)", \
"description": "$($(PKG)_DESCR)"},';)} >> $@
@echo ' "": null' >> $@
@echo '}' >> $@

File diff suppressed because it is too large Load Diff

429
docs/packages.json Normal file
View File

@ -0,0 +1,429 @@
{
"a52dec": {"version": "0.7.4", "website": "http://liba52.sourceforge.net/", "description": "a52dec (aka. liba52)"},
"agg": {"version": "2.5", "website": "http://agg.sourceforge.net/", "description": "Anti-Grain Geometry"},
"alure": {"version": "1.2", "website": "http://kcat.strangesoft.net/alure.html", "description": ""},
"apr": {"version": "1.5.2", "website": "http://apr.apache.org/", "description": "APR"},
"apr-util": {"version": "1.5.4", "website": "http://apr.apache.org/", "description": "APR-util"},
"armadillo": {"version": "6.400.3", "website": "http://arma.sourceforge.net/", "description": "Armadillo C++ linear algebra library"},
"aspell": {"version": "0.60.6.1", "website": "http://aspell.net/", "description": "Aspell"},
"assimp": {"version": "3.2", "website": "http://assimp.sourceforge.net/", "description": "Assimp Open Asset Import Library"},
"atk": {"version": "2.16.0", "website": "http://www.gtk.org/", "description": "ATK"},
"atkmm": {"version": "2.22.7", "website": "http://www.gtkmm.org/", "description": "ATKmm"},
"aubio": {"version": "0.4.2", "website": "http://www.aubio.org/", "description": ""},
"bfd": {"version": "2.25.1", "website": "https://www.gnu.org/software/binutils/", "description": "Binary File Descriptor library"},
"binutils": {"version": "2.25.1", "website": "https://www.gnu.org/software/binutils/", "description": "GNU Binutils"},
"blas": {"version": "3.5.0", "website": "http://www.netlib.org/blas/", "description": ""},
"boost": {"version": "1.60.0", "website": "http://www.boost.org/", "description": "Boost C++ Library"},
"box2d": {"version": "2.3.1", "website": "http://www.box2d.org/", "description": "Box2D"},
"bullet": {"version": "2.82-r2704", "website": "http://bulletphysics.org/", "description": "Bullet physics, version 2"},
"bzip2": {"version": "1.0.6", "website": "http://www.bzip.org/", "description": ""},
"cairo": {"version": "1.14.6", "website": "http://cairographics.org/", "description": ""},
"cairomm": {"version": "1.11.2", "website": "http://cairographics.org/cairomm/", "description": ""},
"cblas": {"version": "1", "website": "http://www.netlib.org/blas/", "description": ""},
"ccfits": {"version": "2.4", "website": "http://heasarc.gsfc.nasa.gov/fitsio/ccfits", "description": "CCfits"},
"cegui": {"version": "9726a2b505fb", "website": "http://cegui.org.uk/", "description": "Crazy Eddies GUI System (CEGUI)"},
"cfitsio": {"version": "3370", "website": "http://heasarc.gsfc.nasa.gov/fitsio/", "description": ""},
"cgal": {"version": "4.6.3", "website": "http://www.cgal.org/", "description": ""},
"check": {"version": "0.10.0", "website": "http://check.sourceforge.net/", "description": ""},
"chipmunk": {"version": "6.2.2", "website": "https://chipmunk-physics.net/", "description": "Chipmunk Physics"},
"chromaprint": {"version": "1.1", "website": "http://acoustid.org/chromaprint", "description": "Chromaprint"},
"cimg": {"version": "1.6.3", "website": "http://cimg.eu/", "description": "CImg Library"},
"cloog": {"version": "0.18.1", "website": "http://www.cloog.org/", "description": "CLooG Code Generator"},
"cmake": {"version": "3.5.2", "website": "http://www.cmake.org/", "description": ""},
"cminpack": {"version": "1.3.4", "website": "http://devernay.free.fr/hacks/cminpack/cminpack.html", "description": ""},
"coda": {"version": "2.15.1", "website": "https://stcorp.nl/coda/", "description": "CODA"},
"coin": {"version": "3.1.3", "website": "https://bitbucket.org/Coin3D/", "description": "Coin3D"},
"cpp-netlib": {"version": "0.11.2", "website": "http://cpp-netlib.org/", "description": "Boost C++ Networking Library"},
"cppunit": {"version": "1.13.2", "website": "http://www.freedesktop.org/wiki/Software/cppunit/", "description": "CppUnit"},
"cryptopp": {"version": "5.6.3", "website": "https://www.cryptopp.com/", "description": "Crypto++ Library"},
"crystalhd": {"version": "1", "website": "http://www.broadcom.com/support/crystal_hd/", "description": "Broadcom Crystal HD Headers"},
"cunit": {"version": "2.1-3", "website": "http://cunit.sourceforge.net/", "description": ""},
"curl": {"version": "7.52.0", "website": "http://curl.haxx.se/libcurl/", "description": "cURL"},
"db": {"version": "6.1.26", "website": "http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html", "description": "Oracle Berkeley DB"},
"dbus": {"version": "1.11.8", "website": "http://dbus.freedesktop.org/", "description": ""},
"dcmtk": {"version": "3.6.0", "website": "http://dicom.offis.de/dcmtk.php.en", "description": "DCMTK"},
"devil": {"version": "1.7.8", "website": "http://openil.sourceforge.net/", "description": "DevIL"},
"djvulibre": {"version": "3.5.27", "website": "http://djvu.sourceforge.net/", "description": "DjVuLibre"},
"dlfcn-win32": {"version": "e19bf07", "website": "https://code.google.com/p/dlfcn-win32/", "description": "POSIX dlfcn wrapper for Windows"},
"eigen": {"version": "3.2.5", "website": "http://eigen.tuxfamily.org/", "description": ""},
"exiv2": {"version": "0.25", "website": "http://www.exiv2.org/", "description": "Exiv2"},
"expat": {"version": "2.2.0", "website": "http://expat.sourceforge.net/", "description": "Expat XML Parser"},
"faad2": {"version": "2.7", "website": "http://www.audiocoding.com/", "description": ""},
"fdk-aac": {"version": "0.1.4", "website": "https://github.com/mstorsjo/fdk-aac", "description": "FDK-AAC"},
"ffmpeg": {"version": "3.2.1", "website": "http://www.ffmpeg.org/", "description": ""},
"fftw": {"version": "3.3.4", "website": "http://www.fftw.org/", "description": ""},
"file": {"version": "5.24", "website": "http://www.darwinsys.com/file/", "description": ""},
"flac": {"version": "1.3.1", "website": "http://www.xiph.org/flac/", "description": "FLAC"},
"flann": {"version": "1.8.4", "website": "http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN", "description": "FLANN"},
"fltk": {"version": "1.3.3", "website": "http://www.fltk.org/", "description": "FLTK"},
"fontconfig": {"version": "2.12.1", "website": "http://fontconfig.org/", "description": ""},
"freeglut": {"version": "3.0.0", "website": "http://freeglut.sourceforge.net/", "description": ""},
"freeimage": {"version": "3.15.4", "website": "http://freeimage.sourceforge.net/", "description": "FreeImage"},
"freetds": {"version": "1.00.23", "website": "http://www.freetds.org/", "description": "FreeTDS"},
"freetype": {"version": "2.7", "website": "http://www.freetype.org/", "description": ""},
"freetype-bootstrap": {"version": "2.7", "website": "http://www.freetype.org/", "description": "freetype (without harfbuzz)"},
"fribidi": {"version": "0.19.6", "website": "http://fribidi.org/", "description": "FriBidi"},
"ftgl": {"version": "2.1.3~rc5", "website": "http://sourceforge.net/projects/ftgl/", "description": ""},
"gc": {"version": "7.2e", "website": "http://www.hpl.hp.com/personal/Hans_Boehm/gc/", "description": ""},
"gcc": {"version": "4.9.4", "website": "http://gcc.gnu.org/", "description": "GCC"},
"gd": {"version": "2.1.0", "website": "http://www.libgd.org/", "description": "GD (without support for xpm)"},
"gdal": {"version": "2.1.2", "website": "http://www.gdal.org/", "description": "GDAL"},
"gdb": {"version": "7.12", "website": "https://www.gnu.org/software/gdb/", "description": ""},
"gdk-pixbuf": {"version": "2.32.3", "website": "http://www.gdk-pixbuf.org/", "description": "GDK-pixbuf"},
"gendef": {"version": "4.0.6", "website": "http://sourceforge.net/p/mingw-w64/wiki2/gendef/", "description": ""},
"geoip-database": {"version": "20150317-1", "website": "http://www.maxmind.com", "description": "GeoIP Legacy Database"},
"geos": {"version": "3.4.2", "website": "http://trac.osgeo.org/geos/", "description": "GEOS"},
"gettext": {"version": "0.19.8.1", "website": "https://www.gnu.org/software/gettext/", "description": ""},
"ghostscript": {"version": "9.19", "website": "http://www.ghostscript.com/", "description": ""},
"giflib": {"version": "5.1.4", "website": "http://sourceforge.net/projects/libungif/", "description": ""},
"glew": {"version": "1.12.0", "website": "http://glew.sourceforge.net/", "description": "GLEW"},
"glfw2": {"version": "2.7.9", "website": "http://www.glfw.org/", "description": "GLFW 2.x"},
"glfw3": {"version": "3.1.2", "website": "http://www.glfw.org/", "description": "GLFW 3.x"},
"glib": {"version": "2.44.1", "website": "http://www.gtk.org/", "description": "GLib"},
"glibmm": {"version": "2.42.0", "website": "http://www.gtkmm.org/", "description": "GLibmm"},
"glm": {"version": "0.9.7.6", "website": "http://glm.g-truc.net", "description": "GLM - OpenGL Mathematics"},
"glpk": {"version": "4.60", "website": "https://www.gnu.org/software/glpk/", "description": "GNU Linear Programming Kit"},
"gmp": {"version": "6.1.2", "website": "http://www.gmplib.org/", "description": "GMP"},
"gnutls": {"version": "3.4.17", "website": "https://www.gnu.org/software/gnutls/", "description": "GnuTLS"},
"googlemock": {"version": "1.7.0", "website": "https://github.com/google/googlemock", "description": "Google Mock"},
"googletest": {"version": "1.7.0", "website": "https://github.com/google/googletest", "description": "Google Test"},
"graphicsmagick": {"version": "1.3.21", "website": "http://www.graphicsmagick.org/", "description": "GraphicsMagick"},
"gsl": {"version": "1.16", "website": "https://www.gnu.org/software/gsl/", "description": "GSL"},
"gsoap": {"version": "2.8.22", "website": "http://gsoap2.sourceforge.net/", "description": "gSOAP"},
"gst-plugins-bad": {"version": "1.6.2", "website": "http://gstreamer.freedesktop.org/", "description": ""},
"gst-plugins-base": {"version": "1.6.2", "website": "http://gstreamer.freedesktop.org/", "description": ""},
"gst-plugins-good": {"version": "1.6.2", "website": "http://gstreamer.freedesktop.org/", "description": ""},
"gst-plugins-ugly": {"version": "1.6.2", "website": "http://gstreamer.freedesktop.org/", "description": ""},
"gstreamer": {"version": "1.6.2", "website": "http://gstreamer.freedesktop.org/", "description": ""},
"gta": {"version": "1.0.7", "website": "http://www.nongnu.org/gta/", "description": ""},
"gtk2": {"version": "2.24.29", "website": "http://www.gtk.org/", "description": "GTK+"},
"gtk3": {"version": "3.14.4", "website": "http://www.gtk.org/", "description": "GTK+"},
"gtkglarea": {"version": "2.0.1", "website": "http://www.mono-project.com/GtkGLArea/", "description": "GtkGLArea"},
"gtkglext": {"version": "1.2.0", "website": "http://gtkglext.sourceforge.net/", "description": "GtkGLExt"},
"gtkglextmm": {"version": "1.2.0", "website": "http://gtkglext.sourceforge.net/", "description": "GtkGLExtmm"},
"gtkimageview": {"version": "1.6.4", "website": "http://trac.bjourne.webfactional.com/", "description": "GtkImageView"},
"gtkmm2": {"version": "2.24.4", "website": "http://www.gtkmm.org/", "description": "GTKMM"},
"gtkmm3": {"version": "3.14.0", "website": "http://www.gtkmm.org/", "description": "GTKMM"},
"gtksourceview": {"version": "2.10.5", "website": "http://projects.gnome.org/gtksourceview/", "description": "GTKSourceView"},
"gtksourceviewmm2": {"version": "2.10.3", "website": "http://projects.gnome.org/gtksourceviewmm/", "description": "GtkSourceViewmm"},
"guile": {"version": "1.8.8", "website": "https://www.gnu.org/software/guile/", "description": "GNU Guile"},
"harfbuzz": {"version": "1.3.4", "website": "http://harfbuzz.sourceforge.net/", "description": "HarfBuzz"},
"hdf-eos2": {"version": "19v1.00", "website": "https://hdfeos.org/software/library.php", "description": "HDF-EOS2"},
"hdf-eos5": {"version": "1.15", "website": "https://hdfeos.org/software/library.php", "description": "HDF-EOS5"},
"hdf4": {"version": "4.2.10", "website": "https://www.hdfgroup.org/hdf4/", "description": "HDF4"},
"hdf5": {"version": "1.8.12", "website": "https://www.hdfgroup.org/hdf5/", "description": "HDF5"},
"hunspell": {"version": "1.3.3", "website": "http://hunspell.sourceforge.net/", "description": "Hunspell"},
"hyperscan": {"version": "4.3.2", "website": "https://01.org/hyperscan", "description": "Hyperscan"},
"icu4c": {"version": "56.1", "website": "http://site.icu-project.org/", "description": "ICU4C"},
"id3lib": {"version": "3.8.3", "website": "http://id3lib.sourceforge.net/", "description": ""},
"ilmbase": {"version": "2.2.0", "website": "http://www.openexr.com/", "description": "IlmBase"},
"imagemagick": {"version": "6.9.0-0", "website": "http://www.imagemagick.org/", "description": "ImageMagick"},
"isl": {"version": "0.12.2", "website": "http://isl.gforge.inria.fr/", "description": "Integer Set Library"},
"itk": {"version": "4.10.1", "website": "http://www.itk.org/", "description": "Insight Segmentation and Registration Toolkit (ITK)"},
"jack": {"version": "1.9.10", "website": "http://jackaudio.org/", "description": "JACK Audio Connection Kit"},
"jansson": {"version": "2.7", "website": "http://www.digip.org/jansson/", "description": "Jansson"},
"jasper": {"version": "1.900.1", "website": "http://www.ece.uvic.ca/~mdadams/jasper/", "description": "JasPer"},
"jpeg": {"version": "9b", "website": "http://www.ijg.org/", "description": ""},
"json-c": {"version": "0.12", "website": "https://github.com/json-c/json-c/wiki", "description": ""},
"json-glib": {"version": "1.0.4", "website": "https://wiki.gnome.org/action/show/Projects/JsonGlib", "description": "JSON-Glib"},
"json_spirit": {"version": "4.08", "website": "https://www.codeproject.com/Articles/20027/JSON-Spirit-A-C-JSON-Parser-Generator-Implemented", "description": ""},
"jsoncpp": {"version": "1.6.5", "website": "https://github.com/open-source-parsers/jsoncpp", "description": ""},
"lame": {"version": "3.99.5", "website": "http://lame.sourceforge.net/", "description": ""},
"lapack": {"version": "3.6.0", "website": "http://www.netlib.org/lapack/", "description": ""},
"lcms": {"version": "2.7", "website": "http://www.littlecms.com/", "description": ""},
"lcms1": {"version": "1.19", "website": "http://www.littlecms.com/", "description": ""},
"lensfun": {"version": "0.3.0", "website": "http://lensfun.sourceforge.net/", "description": ""},
"levmar": {"version": "2.6", "website": "http://www.ics.forth.gr/~lourakis/levmar", "description": ""},
"libaacs": {"version": "0.8.1", "website": "http://www.videolan.org/developers/libaacs.html", "description": ""},
"libarchive": {"version": "3.1.2", "website": "http://www.libarchive.org/", "description": "Libarchive"},
"libass": {"version": "0.13.1", "website": "http://code.google.com/p/libass/", "description": ""},
"libbluray": {"version": "0.9.2", "website": "http://www.videolan.org/developers/libbluray.html", "description": ""},
"libbs2b": {"version": "3.1.0", "website": "http://bs2b.sourceforge.net/", "description": "Bauer Stereophonic-to-Binaural library"},
"libcaca": {"version": "0.99.beta19", "website": "http://caca.zoy.org/wiki/libcaca", "description": ""},
"libcddb": {"version": "1.3.2", "website": "https://sourceforge.net/projects/libcddb/", "description": "Access data on a CDDB"},
"libcdio": {"version": "0.93", "website": "https://www.gnu.org/software/libcdio/", "description": "Libcdio"},
"libcdio-paranoia": {"version": "10.2+0.93+1", "website": "https://www.gnu.org/software/libcdio/", "description": "Libcdio-paranoia"},
"libcomm14cux": {"version": "2.1.1", "website": "https://github.com/colinbourassa/libcomm14cux/", "description": ""},
"libcroco": {"version": "0.6.2", "website": "http://www.freespiders.org/projects/libcroco/", "description": "Libcroco"},
"libdnet": {"version": "1.11", "website": "http://libdnet.sourceforge.net/", "description": ""},
"libdvbpsi": {"version": "1.2.0", "website": "http://www.videolan.org/developers/libdvbpsi.html", "description": ""},
"libdvdcss": {"version": "1.3.0", "website": "http://www.videolan.org/developers/libdvdcss.html", "description": ""},
"libdvdetect": {"version": "0.71.0", "website": "https://www.dvdetect.de/", "description": "Fast database lookup for DVDs"},
"libdvdnav": {"version": "5.0.1", "website": "https://dvdnav.mplayerhq.hu/", "description": ""},
"libdvdread": {"version": "5.0.0", "website": "https://dvdnav.mplayerhq.hu/", "description": ""},
"libechonest": {"version": "2.3.1", "website": "https://github.com/lfranchi/libechonest", "description": ""},
"libepoxy": {"version": "1.3.1", "website": "https://github.com/anholt/libepoxy", "description": ""},
"libevent": {"version": "2.0.21", "website": "http://libevent.org/", "description": ""},
"libf2c": {"version": "1", "website": "http://www.netlib.org/f2c/", "description": ""},
"libffi": {"version": "3.2.1", "website": "https://sourceware.org/libffi/", "description": ""},
"libftdi": {"version": "0.20", "website": "http://www.intra2net.com/en/developer/libftdi/index.php", "description": "LibFTDI"},
"libftdi1": {"version": "1.2", "website": "http://www.intra2net.com/en/developer/libftdi/index.php", "description": "LibFTDI1"},
"libgcrypt": {"version": "1.7.5", "website": "ftp://ftp.gnupg.org/gcrypt/libgcrypt/", "description": ""},
"libgda": {"version": "4.2.13", "website": "http://www.gnome-db.org/", "description": ""},
"libgdamm": {"version": "4.1.3", "website": "https://launchpad.net/libgdamm", "description": ""},
"libgee": {"version": "0.5.0", "website": "http://live.gnome.org/Libgee", "description": ""},
"libgeotiff": {"version": "1.4.0", "website": "http://trac.osgeo.org/geotiff/", "description": "GeoTiff"},
"libgit2": {"version": "0.23.2", "website": "https://libgit2.github.com/", "description": ""},
"libglade": {"version": "2.6.4", "website": "http://glade.gnome.org/", "description": "glade"},
"libgnurx": {"version": "2.6.1", "website": "http://sourceforge.net/projects/mingw/files/UserContributed/regex/", "description": ""},
"libgpg_error": {"version": "1.26", "website": "ftp://ftp.gnupg.org/gcrypt/libgpg-error/", "description": "libgpg-error"},
"libgsasl": {"version": "1.8.0", "website": "https://www.gnu.org/software/gsasl/", "description": "Libgsasl"},
"libgsf": {"version": "1.14.30", "website": "http://projects.gnome.org/libgsf/", "description": ""},
"libharu": {"version": "2.2.1", "website": "http://libharu.org/", "description": ""},
"libiberty": {"version": "2.25.1", "website": "http://gcc.gnu.org/onlinedocs/libiberty/", "description": ""},
"libical": {"version": "2.0.0", "website": "http://freeassociation.sourceforge.net/", "description": ""},
"libiconv": {"version": "1.14", "website": "https://www.gnu.org/software/libiconv/", "description": ""},
"libid3tag": {"version": "0.15.1b", "website": "http://sourceforge.net/projects/mad/files/libid3tag/", "description": ""},
"libidn": {"version": "1.33", "website": "https://www.gnu.org/software/libidn/", "description": "Libidn"},
"libieee1284": {"version": "0.2.11", "website": "http://cyberelk.net/tim/software/libieee1284/", "description": ""},
"libircclient": {"version": "1.8", "website": "http://sourceforge.net/projects/libircclient/", "description": ""},
"libjpeg-turbo": {"version": "1.5.1", "website": "http://libjpeg-turbo.virtualgl.org/", "description": ""},
"liblaxjson": {"version": "1.0.5", "website": "https://github.com/andrewrk/liblaxjson", "description": ""},
"liblo": {"version": "0.28", "website": "http://liblo.sourceforge.net/", "description": ""},
"liblqr-1": {"version": "0.4.2", "website": "http://liblqr.wikidot.com/", "description": ""},
"liblsmash": {"version": "2.9.1", "website": "https://l-smash.github.io/l-smash/", "description": "L-SMASH"},
"libltdl": {"version": "2.4.4", "website": "http://www.gnu.org/software/libtool/manual/html_node/Using-libltdl.html", "description": "GNU Libtool Library (libltdl)"},
"libmad": {"version": "0.15.1b", "website": "http://www.underbit.com/products/mad/", "description": ""},
"libmicrohttpd": {"version": "0.9.38", "website": "http://www.gnu.org/software/libmicrohttpd/", "description": "GNU Libmicrohttpd"},
"libmikmod": {"version": "3.3.7", "website": "http://mikmod.raphnet.net/", "description": "libMikMod"},
"libmng": {"version": "2.0.3", "website": "http://www.libmng.com/", "description": ""},
"libmodplug": {"version": "0.8.8.4", "website": "http://modplug-xmms.sourceforge.net/", "description": ""},
"libmpcdec": {"version": "1.2.6", "website": "http://www.musepack.net/", "description": ""},
"libmysqlclient": {"version": "6.1.6", "website": "https://dev.mysql.com/downloads/connector/c/", "description": ""},
"libnice": {"version": "0.1.13", "website": "https://nice.freedesktop.org/wiki/", "description": ""},
"libntlm": {"version": "1.4", "website": "http://www.nongnu.org/libntlm/", "description": "Libntlm"},
"liboauth": {"version": "1.0.3", "website": "http://liboauth.sourceforge.net/", "description": ""},
"libodbc++": {"version": "0.2.5", "website": "http://libodbcxx.sourceforge.net/", "description": ""},
"liboil": {"version": "0.3.17", "website": "http://liboil.freedesktop.org/", "description": ""},
"libpano13": {"version": "2.9.18", "website": "http://panotools.sourceforge.net/", "description": ""},
"libpaper": {"version": "1.1.24+nmu4", "website": "http://packages.debian.org/unstable/libpaper1", "description": ""},
"libplist": {"version": "1.12", "website": "https://github.com/libimobiledevice/libplist", "description": ""},
"libpng": {"version": "1.6.26", "website": "http://www.libpng.org/", "description": ""},
"librosco": {"version": "0.1.11", "website": "https://github.com/colinbourassa/librosco/", "description": ""},
"librsvg": {"version": "2.40.5", "website": "http://librsvg.sourceforge.net/", "description": ""},
"librtmp": {"version": "a107cef", "website": "http://rtmpdump.mplayerhq.hu/", "description": ""},
"libsamplerate": {"version": "0.1.8", "website": "http://www.mega-nerd.com/SRC/", "description": ""},
"libshout": {"version": "2.4.1", "website": "http://www.icecast.org/", "description": ""},
"libsigc++": {"version": "2.4.0", "website": "http://libsigc.sourceforge.net/", "description": ""},
"libsndfile": {"version": "1.0.27", "website": "http://www.mega-nerd.com/libsndfile/", "description": ""},
"libsodium": {"version": "1.0.6", "website": "https://download.libsodium.org/doc/", "description": ""},
"libsoup": {"version": "2.54.0.1", "website": "https://github.com/GNOME/libsoup", "description": ""},
"libspectre": {"version": "0.2.8", "website": "https://libspectre.freedesktop.org", "description": ""},
"libssh2": {"version": "1.8.0", "website": "http://www.libssh2.org", "description": ""},
"libsvm": {"version": "3.20", "website": "http://www.csie.ntu.edu.tw/~cjlin/libsvm", "description": ""},
"libtool": {"version": "2.4.4", "website": "https://www.gnu.org/software/libtool/", "description": "GNU Libtool"},
"libtorrent-rasterbar": {"version": "1.1.0", "website": "http://www.rasterbar.com/products/libtorrent/", "description": ""},
"libunistring": {"version": "0.9.4", "website": "https://www.gnu.org/software/libunistring/", "description": ""},
"libusb": {"version": "1.2.6.0", "website": "http://libusb-win32.sourceforge.net/", "description": "LibUsb"},
"libusb1": {"version": "1.0.19", "website": "http://libusb.org/", "description": "LibUsb-1.0"},
"libuv": {"version": "1.9.1", "website": "http://libuv.org/", "description": ""},
"libvpx": {"version": "1.5.0", "website": "http://code.google.com/p/webm/", "description": "vpx"},
"libwebp": {"version": "0.4.4", "website": "https://developers.google.com/speed/webp/", "description": ""},
"libwebsockets": {"version": "1.4-chrome43-firefox-36", "website": "http://libwebsockets.org/", "description": ""},
"libxml++": {"version": "2.37.2", "website": "http://libxmlplusplus.sourceforge.net/", "description": "libxml2"},
"libxml2": {"version": "2.9.4", "website": "http://www.xmlsoft.org/", "description": ""},
"libxslt": {"version": "1.1.29", "website": "http://xmlsoft.org/XSLT/", "description": ""},
"libzip": {"version": "0.11.2", "website": "http://www.nih.at/libzip/", "description": ""},
"llvm": {"version": "3.4", "website": "http://llvm.org/", "description": ""},
"log4cxx": {"version": "0.10.0", "website": "http://logging.apache.org/log4cxx/", "description": ""},
"lua": {"version": "5.3.3", "website": "http://www.lua.org/", "description": "Lua"},
"luabind": {"version": "0.9.1", "website": "http://www.rasterbar.com/products/luabind.html", "description": "Luabind"},
"luajit": {"version": "2.0.4", "website": "http://luajit.org/luajit.html", "description": "LuaJIT"},
"lzma": {"version": "920", "website": "http://www.7-zip.org/sdk.html", "description": "LZMA SDK"},
"lzo": {"version": "2.09", "website": "http://www.oberhumer.com/opensource/lzo/", "description": ""},
"matio": {"version": "1.5.2", "website": "http://sourceforge.net/projects/matio/", "description": ""},
"mdbtools": {"version": "0.7.1", "website": "http://sourceforge.net/projects/mdbtools/", "description": ""},
"mingw-w64": {"version": "4.0.6", "website": "http://mingw-w64.sourceforge.net/", "description": "MinGW-w64 Runtime"},
"miniupnpc": {"version": "1.9", "website": "http://miniupnp.free.fr/", "description": ""},
"minizip": {"version": "0b46a2b", "website": "http://www.winimage.com/zLibDll/minizip.html", "description": ""},
"mman-win32": {"version": "b7ec370", "website": "https://code.google.com/p/mman-win32/", "description": "MMA-Win32"},
"mpc": {"version": "1.0.2", "website": "http://www.multiprecision.org/", "description": "GNU MPC"},
"mpfr": {"version": "3.1.5", "website": "http://www.mpfr.org/", "description": ""},
"mpg123": {"version": "1.22.4", "website": "http://www.mpg123.de/", "description": ""},
"muparser": {"version": "2.2.5", "website": "http://muparser.beltoforion.de/", "description": "muParser"},
"muparserx": {"version": "4.0.4", "website": "http://muparserx.beltoforion.de/", "description": "muParserX"},
"mxe-conf": {"version": "1", "website": "", "description": ""},
"mxml": {"version": "2.9", "website": "http://www.msweet.org/projects.php?Z3", "description": "Mini-XML"},
"ncurses": {"version": "e14300b", "website": "https://www.gnu.org/software/ncurses/", "description": "Ncurses"},
"neon": {"version": "0.30.2", "website": "http://webdav.org/neon/", "description": "HTTP and WebDAV client library (libneon)"},
"netcdf": {"version": "4.3.0", "website": "http://www.unidata.ucar.edu/software/netcdf/", "description": "NetCDF"},
"netpbm": {"version": "10.35.96", "website": "http://netpbm.sourceforge.net/", "description": "Netpbm"},
"nettle": {"version": "3.3", "website": "http://www.lysator.liu.se/~nisse/nettle/", "description": ""},
"nlopt": {"version": "2.4.2", "website": "http://ab-initio.mit.edu/wiki/index.php/NLopt", "description": "NLopt"},
"nsis": {"version": "3.01", "website": "http://nsis.sourceforge.net/", "description": "NSIS"},
"ocaml-cairo": {"version": "1.2.0", "website": "http://cairographics.org/cairo-ocaml/", "description": "cairo-ocaml"},
"ocaml-camlimages": {"version": "4.0.1", "website": "http://gallium.inria.fr/camlimages", "description": "camlimages"},
"ocaml-core": {"version": "4.00.1", "website": "http://caml.inria.fr/", "description": "ocaml"},
"ocaml-findlib": {"version": "1.4", "website": "http://download.camlcity.org/", "description": "findlib"},
"ocaml-flexdll": {"version": "0.31", "website": "http://alain.frisch.fr/", "description": "flexdll"},
"ocaml-lablgl": {"version": "1.05", "website": "http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgl.html", "description": "lablgl"},
"ocaml-lablgtk2": {"version": "2.16.0", "website": "http://forge.ocamlcore.org/", "description": "lablgtk2"},
"ocaml-native": {"version": "4.00.1", "website": "http://caml.inria.fr/", "description": "ocaml"},
"ocaml-xml-light": {"version": "2.2", "website": "http://tech.motion-twin.com/xmllight.html", "description": "xml-light"},
"oce": {"version": "0.17.2", "website": "https://github.com/tpaviot/oce", "description": "Open CASCADE Community Edition"},
"ogg": {"version": "1.3.2", "website": "http://www.xiph.org/ogg/", "description": "OGG"},
"old": {"version": "0.17", "website": "http://blitiri.com.ar/p/old/", "description": ""},
"openal": {"version": "1.16.0", "website": "http://kcat.strangesoft.net/openal.html", "description": ""},
"openblas": {"version": "0.2.15", "website": "http://www.openblas.net/", "description": "OpenBLAS"},
"opencore-amr": {"version": "0.1.3", "website": "http://opencore-amr.sourceforge.net/", "description": ""},
"opencsg": {"version": "1.4.1", "website": "http://www.opencsg.org/", "description": ""},
"opencv": {"version": "2.4.10", "website": "http://opencv.org/", "description": "OpenCV"},
"openexr": {"version": "2.2.0", "website": "http://www.openexr.com/", "description": "OpenEXR"},
"openjpeg": {"version": "2.1.0", "website": "http://www.openjpeg.org/", "description": "OpenJPEG"},
"openmp-validation": {"version": "3.1", "website": "http://web.cs.uh.edu/~openuh/", "description": "OpenMP Validation Suite"},
"openscenegraph": {"version": "3.4.0", "website": "http://www.openscenegraph.org/", "description": "OpenSceneGraph"},
"openssl": {"version": "1.0.2j", "website": "https://www.openssl.org/", "description": ""},
"openthreads": {"version": "3.4.0", "website": "http://www.openscenegraph.org/", "description": "OpenThreads"},
"opus": {"version": "1.1.1", "website": "http://opus-codec.org/", "description": ""},
"opusfile": {"version": "0.6", "website": "http://opus-codec.org/", "description": ""},
"ossim": {"version": "1.8.20", "website": "http://trac.osgeo.org/ossim", "description": "OSSIM"},
"pango": {"version": "1.37.4", "website": "http://www.pango.org/", "description": "Pango"},
"pangomm": {"version": "2.34.0", "website": "http://www.pango.org/", "description": "Pangomm"},
"pcl": {"version": "1.8.0", "website": "http://www.pointclouds.org/", "description": "PCL (Point Cloud Library)"},
"pcre": {"version": "8.39", "website": "http://www.pcre.org/", "description": "PCRE"},
"pdcurses": {"version": "3.4", "website": "http://pdcurses.sourceforge.net/", "description": "PDcurses"},
"pdflib_lite": {"version": "7.0.5p3", "website": "http://www.pdflib.com/download/free-software/pdflib-lite-7/", "description": "PDFlib Lite"},
"pfstools": {"version": "2.0.4", "website": "http://pfstools.sourceforge.net/", "description": ""},
"physfs": {"version": "2.0.3", "website": "http://icculus.org/physfs/", "description": ""},
"picomodel": {"version": "1142ad8", "website": "http://code.google.com/p/picomodel/", "description": ""},
"pire": {"version": "0.0.5", "website": "https://github.com/yandex/pire", "description": "PIRE"},
"pixman": {"version": "0.33.6", "website": "http://cairographics.org/", "description": ""},
"pkgconf": {"version": "da179fd", "website": "https://github.com/pkgconf/pkgconf", "description": ""},
"plib": {"version": "1.8.5-rc1", "website": "http://plib.sourceforge.net/", "description": "Plib"},
"plibc": {"version": "cd7ed09", "website": "http://plibc.sourceforge.net/", "description": "Plibc"},
"plotmm": {"version": "0.1.2", "website": "http://plotmm.sourceforge.net/", "description": "PlotMM"},
"plotutils": {"version": "2.6", "website": "https://www.gnu.org/software/plotutils/", "description": ""},
"poco": {"version": "1.4.7p1", "website": "http://pocoproject.org/", "description": "POCO C++ Libraries"},
"polarssl": {"version": "1.3.9", "website": "https://polarssl.org/", "description": "Polar SSL Library"},
"poppler": {"version": "0.30.0", "website": "http://poppler.freedesktop.org/", "description": ""},
"popt": {"version": "1.16", "website": "http://freshmeat.net/projects/popt/", "description": ""},
"portablexdr": {"version": "4.9.1", "website": "http://people.redhat.com/~rjones/portablexdr/", "description": "PortableXDR"},
"portaudio": {"version": "190600_20161030", "website": "http://www.portaudio.com/", "description": ""},
"portmidi": {"version": "217", "website": "http://portmedia.sourceforge.net/portmidi/", "description": ""},
"postgresql": {"version": "9.2.4", "website": "http://www.postgresql.org/", "description": "PostgreSQL"},
"primesieve": {"version": "5.5.0", "website": "http://primesieve.org/", "description": "Primesieve"},
"proj": {"version": "4.9.3", "website": "http://trac.osgeo.org/proj/", "description": ""},
"protobuf": {"version": "3.1.0", "website": "https://github.com/google/protobuf", "description": ""},
"pthreads": {"version": "POSIX 1003.1-2001", "website": "https://en.wikipedia.org/wiki/POSIX_Threads", "description": "POSIX Threads"},
"qdbm": {"version": "1.8.78", "website": "http://fallabs.com/qdbm/", "description": "QDBM"},
"qhttpengine": {"version": "0.1.0", "website": "https://github.com/nitroshare/qhttpengine", "description": ""},
"qjson": {"version": "0.8.1", "website": "http://qjson.sourceforge.net/", "description": "QJson"},
"qscintilla2": {"version": "2.8.4", "website": "http://www.riverbankcomputing.com/software/qscintilla/intro", "description": "QScintilla2"},
"qt": {"version": "4.8.7", "website": "http://qt-project.org/", "description": "Qt"},
"qt3d": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qt5": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtactiveqt": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtbase": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtcanvas3d": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtcharts": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtconnectivity": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtdatavis3d": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtdeclarative": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtdeclarative-render2d": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtgamepad": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtgraphicaleffects": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtimageformats": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtlocation": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtmultimedia": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtofficeopenxml": {"version": "02dda4a46f92a843eaba5f5a021952860eadfe01", "website": "https://github.com/dbzhang800/QtOfficeOpenXml/", "description": "QtOfficeOpenXml"},
"qtpurchasing": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtquickcontrols": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtquickcontrols2": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtscript": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtscxml": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtsensors": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtserialbus": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtserialport": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtserialport_qt4": {"version": "5c3b6cc770", "website": "http://qt-project.org/", "description": "Qt"},
"qtservice": {"version": "ad9bc46", "website": "https://qt.gitorious.org/qt-solutions/", "description": "Qt Solutions"},
"qtsparkle_qt4": {"version": "8882e6ef86cdb79db7932307309d005411fd0c20", "website": "https://github.com/davidsansome/qtsparkle", "description": "qtsparkle"},
"qtsvg": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtsystems": {"version": "4e3a7ed", "website": "http://qt-project.org/", "description": "Qt"},
"qttools": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qttranslations": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtvirtualkeyboard": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtwebchannel": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtwebkit": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtwebsockets": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtwebview": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtwinextras": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qtxlsxwriter": {"version": "37ef9dae209f989ed07f3aec37d5fbd1c821335c", "website": "https://github.com/dbzhang800/QtXlsxWriter/", "description": "QtXlsxWriter"},
"qtxmlpatterns": {"version": "5.7.1", "website": "http://qt-project.org/", "description": "Qt"},
"qwt": {"version": "6.1.3", "website": "http://qwt.sourceforge.net/", "description": "Qwt"},
"qwt_qt4": {"version": "6.1.3", "website": "http://qwt.sourceforge.net/", "description": "Qwt-qt4"},
"qwtplot3d": {"version": "0.2.7", "website": "http://qwtplot3d.sourceforge.net/", "description": "QwtPlot3D"},
"ragel": {"version": "6.9", "website": "https://www.colm.net/open-source/ragel/", "description": "Ragel"},
"readline": {"version": "6.3", "website": "http://tiswww.case.edu/php/chet/readline/rltop.html", "description": "Readline"},
"rubberband": {"version": "1.8.1", "website": "http://breakfastquay.com/rubberband/", "description": "Rubberband"},
"rucksack": {"version": "3.1.0", "website": "https://github.com/andrewrk/rucksack", "description": ""},
"sdl": {"version": "1.2.15", "website": "http://www.libsdl.org/", "description": "SDL"},
"sdl2": {"version": "2.0.5", "website": "http://www.libsdl.org/", "description": "SDL2"},
"sdl2_gfx": {"version": "1.0.1", "website": "http://www.ferzkopp.net/joomla/content/view/19/14/", "description": "SDL2_gfx"},
"sdl2_image": {"version": "2.0.0", "website": "http://www.libsdl.org/", "description": "SDL2_image"},
"sdl2_mixer": {"version": "2.0.0", "website": "http://www.libsdl.org/", "description": "SDL2_mixer"},
"sdl2_net": {"version": "2.0.0", "website": "http://www.libsdl.org/", "description": ""},
"sdl2_ttf": {"version": "2.0.12", "website": "http://www.libsdl.org/", "description": "SDL2_ttf"},
"sdl_gfx": {"version": "2.0.25", "website": "http://www.ferzkopp.net/joomla/content/view/19/14/", "description": "SDL_gfx"},
"sdl_image": {"version": "1.2.12", "website": "http://www.libsdl.org/projects/SDL_image/", "description": "SDL_image"},
"sdl_mixer": {"version": "1.2.12", "website": "http://www.libsdl.org/projects/SDL_mixer/", "description": "SDL_mixer"},
"sdl_net": {"version": "1.2.8", "website": "http://www.libsdl.org/projects/SDL_net/", "description": "SDL_net"},
"sdl_pango": {"version": "0.1.2", "website": "http://sdlpango.sourceforge.net/", "description": "SDL_Pango"},
"sdl_rwhttp": {"version": "0.2.0", "website": "http://github.com/mgerhardy/SDL_rwhttp/", "description": "SDL_rwhttp"},
"sdl_sound": {"version": "1.0.3", "website": "http://icculus.org/SDL_sound/", "description": "SDL_sound"},
"sdl_ttf": {"version": "2.0.11", "website": "http://www.libsdl.org/projects/SDL_ttf/", "description": "SDL_ttf"},
"sfml": {"version": "2.3.2", "website": "http://www.sfml-dev.org/", "description": "SFML"},
"smpeg": {"version": "0.4.5+cvs20030824", "website": "http://icculus.org/smpeg/", "description": ""},
"smpeg2": {"version": "2.0.0", "website": "http://icculus.org/smpeg/", "description": "smpeg"},
"sox": {"version": "14.4.2", "website": "http://sox.sourceforge.net/", "description": "SoX"},
"sparsehash": {"version": "2.0.3", "website": "https://github.com/sparsehash/sparsehash", "description": ""},
"speex": {"version": "1.2rc2", "website": "http://www.speex.org/", "description": "Speex"},
"speexdsp": {"version": "1.2rc3", "website": "http://www.speex.org/", "description": "SpeexDSP"},
"sqlite": {"version": "3150200", "website": "http://www.sqlite.org/", "description": "SQLite"},
"subversion": {"version": "1.9.4", "website": "http://subversion.apache.org", "description": ""},
"suitesparse": {"version": "4.2.1", "website": "http://www.cise.ufl.edu/research/sparse/SuiteSparse/", "description": "SuiteSparse"},
"t4k_common": {"version": "0.1.1", "website": "http://tux4kids.alioth.debian.org/", "description": ""},
"taglib": {"version": "1.10", "website": "http://developer.kde.org/~wheeler/taglib.html", "description": "TagLib"},
"tclap": {"version": "1.2.1", "website": "http://tclap.sourceforge.net/", "description": ""},
"teem": {"version": "1.11.0", "website": "http://teem.sourceforge.net/", "description": "Teem"},
"termcap": {"version": "1.3.1", "website": "https://www.gnu.org/software/termutils/", "description": "Termcap"},
"theora": {"version": "1.1.1", "website": "http://theora.org/", "description": "Theora"},
"tiff": {"version": "4.0.7", "website": "http://www.remotesensing.org/libtiff/", "description": "LibTIFF"},
"tinyxml": {"version": "2.6.2", "website": "http://sourceforge.net/projects/tinyxml/", "description": ""},
"tinyxml2": {"version": "4.0.1", "website": "http://grinninglizard.com/tinyxml2/", "description": ""},
"tre": {"version": "0.8.0", "website": "http://laurikari.net/tre/", "description": "TRE"},
"twolame": {"version": "0.3.13", "website": "http://www.twolame.org/", "description": "TwoLAME"},
"ucl": {"version": "1.03", "website": "http://www.oberhumer.com/opensource/ucl/", "description": "UCL"},
"unrtf": {"version": "0.21.9", "website": "https://www.gnu.org/software/unrtf/", "description": "unRTF"},
"upx": {"version": "3.91", "website": "http://upx.sourceforge.net/", "description": "UPX"},
"vamp-plugin-sdk": {"version": "2.5", "website": "http://vamp-plugins.org/", "description": "Vamp Plugins SDK"},
"vcdimager": {"version": "0.7.24", "website": "https://www.gnu.org/software/vcdimager/", "description": ""},
"vidstab": {"version": "0.98b", "website": "http://public.hronopik.de/vid.stab/features.php?lang=en", "description": "vid.stab video stablizer"},
"vigra": {"version": "1.9.0", "website": "http://hci.iwr.uni-heidelberg.de/vigra", "description": ""},
"vmime": {"version": "b1b3f30", "website": "http://www.vmime.org/", "description": "VMime"},
"vo-aacenc": {"version": "0.1.3", "website": "https://github.com/mstorsjo/vo-aacenc", "description": "VO-AACENC"},
"vo-amrwbenc": {"version": "0.1.3", "website": "https://github.com/mstorsjo/vo-amrwbenc", "description": "VO-AMRWBENC"},
"vorbis": {"version": "1.3.5", "website": "http://www.vorbis.com/", "description": "Vorbis"},
"vtk": {"version": "5.8.0", "website": "http://www.vtk.org/", "description": ""},
"vtk6": {"version": "6.3.0", "website": "http://www.vtk.org/", "description": "VTK6"},
"waf": {"version": "1.8.17", "website": "https://waf.io/", "description": "Waf: the meta build system"},
"wavpack": {"version": "4.75.2", "website": "http://www.wavpack.com/", "description": "WavPack"},
"wget": {"version": "1.18", "website": "https://www.gnu.org/software/wget/", "description": ""},
"widl": {"version": "4.0.6", "website": "https://www.winehq.org/docs/widl/", "description": "Wine IDL Compiler"},
"winpcap": {"version": "4_1_3", "website": "http://www.winpcap.org/", "description": "WinPcap"},
"wt": {"version": "3.3.6", "website": "http://www.webtoolkit.eu", "description": "Wt"},
"wxwidgets": {"version": "3.0.2", "website": "http://www.wxwidgets.org/", "description": "wxWidgets"},
"x264": {"version": "20161130-2245", "website": "http://www.videolan.org/developers/x264.html", "description": ""},
"xapian-core": {"version": "1.2.21", "website": "http://xapian.org/", "description": "Xapian-Core"},
"xerces": {"version": "3.1.4", "website": "http://xerces.apache.org/xerces-c/", "description": "Xerces-C++"},
"xmlrpc-c": {"version": "d4364f4", "website": "http://xmlrpc-c.sourceforge.net/", "description": ""},
"xmlwrapp": {"version": "0.7.0", "website": "http://sourceforge.net/projects/xmlwrapp/", "description": ""},
"xorg-macros": {"version": "1.19.0", "website": "http://cgit.freedesktop.org/xorg/util/macros/", "description": "X.org utility macros"},
"xvidcore": {"version": "1.3.4", "website": "http://www.xvid.org/", "description": ""},
"xxhash": {"version": "0.6.1", "website": "http://cyan4973.github.io/xxHash/", "description": "xxHash"},
"xz": {"version": "5.2.2", "website": "http://tukaani.org/xz/", "description": "XZ"},
"yaml-cpp": {"version": "0.5.3", "website": "https://github.com/jbeder/yaml-cpp", "description": "A YAML parser and emitter for C++"},
"yasm": {"version": "1.3.0", "website": "http://yasm.tortall.net//", "description": "Yasm"},
"zlib": {"version": "1.2.8", "website": "http://zlib.net/", "description": ""},
"zziplib": {"version": "0.13.62", "website": "http://zziplib.sourceforge.net/", "description": "ZZIPlib"},
"": null
}

View File

@ -1,429 +0,0 @@
{
"a52dec": "0.7.4",
"agg": "2.5",
"alure": "1.2",
"apr": "1.5.2",
"apr-util": "1.5.4",
"armadillo": "6.400.3",
"aspell": "0.60.6.1",
"assimp": "3.2",
"atk": "2.16.0",
"atkmm": "2.22.7",
"aubio": "0.4.2",
"bfd": "2.25.1",
"binutils": "2.25.1",
"blas": "3.5.0",
"boost": "1.60.0",
"box2d": "2.3.1",
"bullet": "2.82-r2704",
"bzip2": "1.0.6",
"cairo": "1.14.6",
"cairomm": "1.11.2",
"cblas": "1",
"ccfits": "2.4",
"cegui": "9726a2b505fb",
"cfitsio": "3370",
"cgal": "4.6.3",
"check": "0.10.0",
"chipmunk": "6.2.2",
"chromaprint": "1.1",
"cimg": "1.6.3",
"cloog": "0.18.1",
"cmake": "3.5.2",
"cminpack": "1.3.4",
"coda": "2.15.1",
"coin": "3.1.3",
"cpp-netlib": "0.11.2",
"cppunit": "1.13.2",
"cryptopp": "5.6.3",
"crystalhd": "1",
"cunit": "2.1-3",
"curl": "7.52.0",
"db": "6.1.26",
"dbus": "1.11.8",
"dcmtk": "3.6.0",
"devil": "1.7.8",
"djvulibre": "3.5.27",
"dlfcn-win32": "e19bf07",
"eigen": "3.2.5",
"exiv2": "0.25",
"expat": "2.2.0",
"faad2": "2.7",
"fdk-aac": "0.1.4",
"ffmpeg": "3.2.1",
"fftw": "3.3.4",
"file": "5.24",
"flac": "1.3.1",
"flann": "1.8.4",
"fltk": "1.3.3",
"fontconfig": "2.12.1",
"freeglut": "3.0.0",
"freeimage": "3.15.4",
"freetds": "1.00.23",
"freetype": "2.7",
"freetype-bootstrap": "2.7",
"fribidi": "0.19.6",
"ftgl": "2.1.3~rc5",
"gc": "7.2e",
"gcc": "4.9.4",
"gd": "2.1.0",
"gdal": "2.1.2",
"gdb": "7.12",
"gdk-pixbuf": "2.32.3",
"gendef": "4.0.6",
"geoip-database": "20150317-1",
"geos": "3.4.2",
"gettext": "0.19.8.1",
"ghostscript": "9.19",
"giflib": "5.1.4",
"glew": "1.12.0",
"glfw2": "2.7.9",
"glfw3": "3.1.2",
"glib": "2.44.1",
"glibmm": "2.42.0",
"glm": "0.9.7.6",
"glpk": "4.60",
"gmp": "6.1.2",
"gnutls": "3.4.17",
"googlemock": "1.7.0",
"googletest": "1.7.0",
"graphicsmagick": "1.3.21",
"gsl": "1.16",
"gsoap": "2.8.22",
"gst-plugins-bad": "1.6.2",
"gst-plugins-base": "1.6.2",
"gst-plugins-good": "1.6.2",
"gst-plugins-ugly": "1.6.2",
"gstreamer": "1.6.2",
"gta": "1.0.7",
"gtk2": "2.24.29",
"gtk3": "3.14.4",
"gtkglarea": "2.0.1",
"gtkglext": "1.2.0",
"gtkglextmm": "1.2.0",
"gtkimageview": "1.6.4",
"gtkmm2": "2.24.4",
"gtkmm3": "3.14.0",
"gtksourceview": "2.10.5",
"gtksourceviewmm2": "2.10.3",
"guile": "1.8.8",
"harfbuzz": "1.3.4",
"hdf-eos2": "19v1.00",
"hdf-eos5": "1.15",
"hdf4": "4.2.10",
"hdf5": "1.8.12",
"hunspell": "1.3.3",
"hyperscan": "4.3.2",
"icu4c": "56.1",
"id3lib": "3.8.3",
"ilmbase": "2.2.0",
"imagemagick": "6.9.0-0",
"isl": "0.12.2",
"itk": "4.10.1",
"jack": "1.9.10",
"jansson": "2.7",
"jasper": "1.900.1",
"jpeg": "9b",
"json-c": "0.12",
"json-glib": "1.0.4",
"json_spirit": "4.08",
"jsoncpp": "1.6.5",
"lame": "3.99.5",
"lapack": "3.6.0",
"lcms": "2.7",
"lcms1": "1.19",
"lensfun": "0.3.0",
"levmar": "2.6",
"libaacs": "0.8.1",
"libarchive": "3.1.2",
"libass": "0.13.1",
"libbluray": "0.9.2",
"libbs2b": "3.1.0",
"libcaca": "0.99.beta19",
"libcddb": "1.3.2",
"libcdio": "0.93",
"libcdio-paranoia": "10.2+0.93+1",
"libcomm14cux": "2.1.1",
"libcroco": "0.6.2",
"libdnet": "1.11",
"libdvbpsi": "1.2.0",
"libdvdcss": "1.3.0",
"libdvdetect": "0.71.0",
"libdvdnav": "5.0.1",
"libdvdread": "5.0.0",
"libechonest": "2.3.1",
"libepoxy": "1.3.1",
"libevent": "2.0.21",
"libf2c": "1",
"libffi": "3.2.1",
"libftdi": "0.20",
"libftdi1": "1.2",
"libgcrypt": "1.7.5",
"libgda": "4.2.13",
"libgdamm": "4.1.3",
"libgee": "0.5.0",
"libgeotiff": "1.4.0",
"libgit2": "0.23.2",
"libglade": "2.6.4",
"libgnurx": "2.6.1",
"libgpg_error": "1.26",
"libgsasl": "1.8.0",
"libgsf": "1.14.30",
"libharu": "2.2.1",
"libiberty": "2.25.1",
"libical": "2.0.0",
"libiconv": "1.14",
"libid3tag": "0.15.1b",
"libidn": "1.33",
"libieee1284": "0.2.11",
"libircclient": "1.8",
"libjpeg-turbo": "1.5.1",
"liblaxjson": "1.0.5",
"liblo": "0.28",
"liblqr-1": "0.4.2",
"liblsmash": "2.9.1",
"libltdl": "2.4.4",
"libmad": "0.15.1b",
"libmicrohttpd": "0.9.38",
"libmikmod": "3.3.7",
"libmng": "2.0.3",
"libmodplug": "0.8.8.4",
"libmpcdec": "1.2.6",
"libmysqlclient": "6.1.6",
"libnice": "0.1.13",
"libntlm": "1.4",
"liboauth": "1.0.3",
"libodbc++": "0.2.5",
"liboil": "0.3.17",
"libpano13": "2.9.18",
"libpaper": "1.1.24+nmu4",
"libplist": "1.12",
"libpng": "1.6.26",
"librosco": "0.1.11",
"librsvg": "2.40.5",
"librtmp": "a107cef",
"libsamplerate": "0.1.8",
"libshout": "2.4.1",
"libsigc++": "2.4.0",
"libsndfile": "1.0.27",
"libsodium": "1.0.6",
"libsoup": "2.54.0.1",
"libspectre": "0.2.8",
"libssh2": "1.8.0",
"libsvm": "3.20",
"libtool": "2.4.4",
"libtorrent-rasterbar": "1.1.0",
"libunistring": "0.9.4",
"libusb": "1.2.6.0",
"libusb1": "1.0.19",
"libuv": "1.9.1",
"libvpx": "1.5.0",
"libwebp": "0.4.4",
"libwebsockets": "1.4-chrome43-firefox-36",
"libxml++": "2.37.2",
"libxml2": "2.9.4",
"libxslt": "1.1.29",
"libzip": "0.11.2",
"llvm": "3.4",
"log4cxx": "0.10.0",
"lua": "5.3.3",
"luabind": "0.9.1",
"luajit": "2.0.4",
"lzma": "920",
"lzo": "2.09",
"matio": "1.5.2",
"mdbtools": "0.7.1",
"mingw-w64": "4.0.6",
"miniupnpc": "1.9",
"minizip": "0b46a2b",
"mman-win32": "b7ec370",
"mpc": "1.0.2",
"mpfr": "3.1.5",
"mpg123": "1.22.4",
"muparser": "2.2.5",
"muparserx": "4.0.4",
"mxe-conf": "1",
"mxml": "2.9",
"ncurses": "e14300b",
"neon": "0.30.2",
"netcdf": "4.3.0",
"netpbm": "10.35.96",
"nettle": "3.3",
"nlopt": "2.4.2",
"nsis": "3.01",
"ocaml-cairo": "1.2.0",
"ocaml-camlimages": "4.0.1",
"ocaml-core": "4.00.1",
"ocaml-findlib": "1.4",
"ocaml-flexdll": "0.31",
"ocaml-lablgl": "1.05",
"ocaml-lablgtk2": "2.16.0",
"ocaml-native": "4.00.1",
"ocaml-xml-light": "2.2",
"oce": "0.17.2",
"ogg": "1.3.2",
"old": "0.17",
"openal": "1.16.0",
"openblas": "0.2.15",
"opencore-amr": "0.1.3",
"opencsg": "1.4.1",
"opencv": "2.4.10",
"openexr": "2.2.0",
"openjpeg": "2.1.0",
"openmp-validation": "3.1",
"openscenegraph": "3.4.0",
"openssl": "1.0.2j",
"openthreads": "3.4.0",
"opus": "1.1.1",
"opusfile": "0.6",
"ossim": "1.8.20",
"pango": "1.37.4",
"pangomm": "2.34.0",
"pcl": "1.8.0",
"pcre": "8.39",
"pdcurses": "3.4",
"pdflib_lite": "7.0.5p3",
"pfstools": "2.0.4",
"physfs": "2.0.3",
"picomodel": "1142ad8",
"pire": "0.0.5",
"pixman": "0.33.6",
"pkgconf": "da179fd",
"plib": "1.8.5-rc1",
"plibc": "cd7ed09",
"plotmm": "0.1.2",
"plotutils": "2.6",
"poco": "1.4.7p1",
"polarssl": "1.3.9",
"poppler": "0.30.0",
"popt": "1.16",
"portablexdr": "4.9.1",
"portaudio": "190600_20161030",
"portmidi": "217",
"postgresql": "9.2.4",
"primesieve": "5.5.0",
"proj": "4.9.3",
"protobuf": "3.1.0",
"pthreads": "POSIX 1003.1-2001",
"qdbm": "1.8.78",
"qhttpengine": "0.1.0",
"qjson": "0.8.1",
"qscintilla2": "2.8.4",
"qt": "4.8.7",
"qt3d": "5.7.1",
"qt5": "5.7.1",
"qtactiveqt": "5.7.1",
"qtbase": "5.7.1",
"qtcanvas3d": "5.7.1",
"qtcharts": "5.7.1",
"qtconnectivity": "5.7.1",
"qtdatavis3d": "5.7.1",
"qtdeclarative": "5.7.1",
"qtdeclarative-render2d": "5.7.1",
"qtgamepad": "5.7.1",
"qtgraphicaleffects": "5.7.1",
"qtimageformats": "5.7.1",
"qtlocation": "5.7.1",
"qtmultimedia": "5.7.1",
"qtofficeopenxml": "02dda4a46f92a843eaba5f5a021952860eadfe01",
"qtpurchasing": "5.7.1",
"qtquickcontrols": "5.7.1",
"qtquickcontrols2": "5.7.1",
"qtscript": "5.7.1",
"qtscxml": "5.7.1",
"qtsensors": "5.7.1",
"qtserialbus": "5.7.1",
"qtserialport": "5.7.1",
"qtserialport_qt4": "5c3b6cc770",
"qtservice": "ad9bc46",
"qtsparkle_qt4": "8882e6ef86cdb79db7932307309d005411fd0c20",
"qtsvg": "5.7.1",
"qtsystems": "4e3a7ed",
"qttools": "5.7.1",
"qttranslations": "5.7.1",
"qtvirtualkeyboard": "5.7.1",
"qtwebchannel": "5.7.1",
"qtwebkit": "5.7.1",
"qtwebsockets": "5.7.1",
"qtwebview": "5.7.1",
"qtwinextras": "5.7.1",
"qtxlsxwriter": "37ef9dae209f989ed07f3aec37d5fbd1c821335c",
"qtxmlpatterns": "5.7.1",
"qwt": "6.1.3",
"qwt_qt4": "6.1.3",
"qwtplot3d": "0.2.7",
"ragel": "6.9",
"readline": "6.3",
"rubberband": "1.8.1",
"rucksack": "3.1.0",
"sdl": "1.2.15",
"sdl2": "2.0.5",
"sdl2_gfx": "1.0.1",
"sdl2_image": "2.0.0",
"sdl2_mixer": "2.0.0",
"sdl2_net": "2.0.0",
"sdl2_ttf": "2.0.12",
"sdl_gfx": "2.0.25",
"sdl_image": "1.2.12",
"sdl_mixer": "1.2.12",
"sdl_net": "1.2.8",
"sdl_pango": "0.1.2",
"sdl_rwhttp": "0.2.0",
"sdl_sound": "1.0.3",
"sdl_ttf": "2.0.11",
"sfml": "2.3.2",
"smpeg": "0.4.5+cvs20030824",
"smpeg2": "2.0.0",
"sox": "14.4.2",
"sparsehash": "2.0.3",
"speex": "1.2rc2",
"speexdsp": "1.2rc3",
"sqlite": "3150200",
"subversion": "1.9.4",
"suitesparse": "4.2.1",
"t4k_common": "0.1.1",
"taglib": "1.10",
"tclap": "1.2.1",
"teem": "1.11.0",
"termcap": "1.3.1",
"theora": "1.1.1",
"tiff": "4.0.7",
"tinyxml": "2.6.2",
"tinyxml2": "4.0.1",
"tre": "0.8.0",
"twolame": "0.3.13",
"ucl": "1.03",
"unrtf": "0.21.9",
"upx": "3.91",
"vamp-plugin-sdk": "2.5",
"vcdimager": "0.7.24",
"vidstab": "0.98b",
"vigra": "1.9.0",
"vmime": "b1b3f30",
"vo-aacenc": "0.1.3",
"vo-amrwbenc": "0.1.3",
"vorbis": "1.3.5",
"vtk": "5.8.0",
"vtk6": "6.3.0",
"waf": "1.8.17",
"wavpack": "4.75.2",
"wget": "1.18",
"widl": "4.0.6",
"winpcap": "4_1_3",
"wt": "3.3.6",
"wxwidgets": "3.0.2",
"x264": "20161130-2245",
"xapian-core": "1.2.21",
"xerces": "3.1.4",
"xmlrpc-c": "d4364f4",
"xmlwrapp": "0.7.0",
"xorg-macros": "1.19.0",
"xvidcore": "1.3.4",
"xxhash": "0.6.1",
"xz": "5.2.2",
"yaml-cpp": "0.5.3",
"yasm": "1.3.0",
"zlib": "1.2.8",
"zziplib": "0.13.62",
"": null
}

View File

@ -63,14 +63,14 @@ init-git-%: download-only-%
$(if $(wildcard $(call GIT_DIR,$*)), \
$(error $(call GIT_DIR,$*) already exists), \
$(call INIT_GIT,$*)), \
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
import-patch-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(if $(wildcard $(call GIT_DIR,$*)), \
$(call IMPORT_PATCH,$*,$(call PATCH_BY_NAME,$*,$(PATCH_NAME))), \
$(error $(call GIT_DIR,$*) does not exist)), \
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
import-all-patches-%:
$(if $(call set_is_member,$*,$(PKGS)), \
@ -78,11 +78,11 @@ import-all-patches-%:
$(foreach PKG_PATCH,$(call PKG_PATCHES,$*), \
$(call IMPORT_PATCH,$*,$(PKG_PATCH))), \
$(error $(call GIT_DIR,$*) does not exist)), \
$(error Package $* not found in docs/index.html))
$(error Package $* not found))
export-patch-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(if $(wildcard $(call GIT_DIR,$*)), \
$(call EXPORT_PATCH,$*,$(PATCH_NAME)), \
$(error $(call GIT_DIR,$*) does not exist)), \
$(error Package $* not found in docs/index.html))
$(error Package $* not found))

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := a52dec
$(PKG)_WEBSITE := http://liba52.sourceforge.net/
$(PKG)_DESCR := a52dec (aka. liba52)
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.7.4
$(PKG)_CHECKSUM := a21d724ab3b3933330194353687df82c475b5dfb997513eef4c25de6c865ec33

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := agg
$(PKG)_WEBSITE := http://agg.sourceforge.net/
$(PKG)_DESCR := Anti-Grain Geometry
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.5
$(PKG)_CHECKSUM := ab1edc54cc32ba51a62ff120d501eecd55fceeedf869b9354e7e13812289911f

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := alure
$(PKG)_WEBSITE := http://kcat.strangesoft.net/alure.html
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.2
$(PKG)_CHECKSUM := 465e6adae68927be3a023903764662d64404e40c4c152d160e3a8838b1d70f71

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := apr-util
$(PKG)_WEBSITE := http://apr.apache.org/
$(PKG)_DESCR := APR-util
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.5.4
$(PKG)_CHECKSUM := 976a12a59bc286d634a21d7be0841cc74289ea9077aa1af46be19d1a6e844c19

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := apr
$(PKG)_WEBSITE := http://apr.apache.org/
$(PKG)_DESCR := APR
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.5.2
$(PKG)_CHECKSUM := 1af06e1720a58851d90694a984af18355b65bb0d047be03ec7d659c746d6dbdb

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := armadillo
$(PKG)_WEBSITE := http://arma.sourceforge.net/
$(PKG)_DESCR := Armadillo C++ linear algebra library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 6.400.3
$(PKG)_CHECKSUM := 019ce442a1bcad4c5da0bc01ee35333c9a0783ec6a58237ae1e774da68cd4f2f

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := aspell
$(PKG)_WEBSITE := http://aspell.net/
$(PKG)_DESCR := Aspell
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.60.6.1
$(PKG)_CHECKSUM := f52583a83a63633701c5f71db3dc40aab87b7f76b29723aeb27941eff42df6e1

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := assimp
$(PKG)_WEBSITE := http://assimp.sourceforge.net/
$(PKG)_DESCR := Assimp Open Asset Import Library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.2
$(PKG)_CHECKSUM := 187f825c563e84b1b17527a4da0351aa3d575dfd696a9d204ae4bb19ee7df94a

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := atk
$(PKG)_WEBSITE := http://www.gtk.org/
$(PKG)_DESCR := ATK
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.16.0
$(PKG)_CHECKSUM := 095f986060a6a0b22eb15eef84ae9f14a1cf8082488faa6886d94c37438ae562

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := atkmm
$(PKG)_WEBSITE := http://www.gtkmm.org/
$(PKG)_DESCR := ATKmm
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.22.7
$(PKG)_CHECKSUM := bfbf846b409b4c5eb3a52fa32a13d86936021969406b3dcafd4dd05abd70f91b

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := aubio
$(PKG)_WEBSITE := http://www.aubio.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.4.2
$(PKG)_CHECKSUM := 1cc58e0fed2b9468305b198ad06b889f228b797a082c2ede716dc30fcb4f8f1f

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bfd
$(PKG)_WEBSITE := https://www.gnu.org/software/binutils/
$(PKG)_DESCR := Binary File Descriptor library
$(PKG)_IGNORE = $(binutils_IGNORE)
$(PKG)_VERSION = $(binutils_VERSION)
$(PKG)_CHECKSUM = $(binutils_CHECKSUM)

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := binutils
$(PKG)_WEBSITE := https://www.gnu.org/software/binutils/
$(PKG)_DESCR := GNU Binutils
# see http://lists.nongnu.org/archive/html/mingw-cross-env-list/2016-01/msg00013.html
# 2.26 causes incorrect dlls to be built with sjlj exceptions
$(PKG)_IGNORE := 2.26

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := blas
$(PKG)_WEBSITE := http://www.netlib.org/blas/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.5.0
$(PKG)_CHECKSUM := ef7d775d380f255d1902bce374ff7c8a594846454fcaeae552292168af1aca24

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := boost
$(PKG)_WEBSITE := http://www.boost.org/
$(PKG)_DESCR := Boost C++ Library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.60.0
$(PKG)_CHECKSUM := 686affff989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := box2d
$(PKG)_WEBSITE := http://www.box2d.org/
$(PKG)_DESCR := Box2D
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.3.1
$(PKG)_CHECKSUM := 75d62738b13d2836cd56647581b6e574d4005a6e077ddefa5d727d445d649752

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bullet
$(PKG)_WEBSITE := http://bulletphysics.org/
$(PKG)_DESCR := Bullet physics, version 2
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.82-r2704
$(PKG)_CHECKSUM := 67e4c9eb76f7adf99501d726d8ad5e9b525dfd0843fbce9ca73aaca4ba9eced2

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bzip2
$(PKG)_WEBSITE := http://www.bzip.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.0.6
$(PKG)_CHECKSUM := a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cairo
$(PKG)_WEBSITE := http://cairographics.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.14.6
$(PKG)_CHECKSUM := 613cb38447b76a93ff7235e17acd55a78b52ea84a9df128c3f2257f8eaa7b252

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cairomm
$(PKG)_WEBSITE := http://cairographics.org/cairomm/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.11.2
$(PKG)_CHECKSUM := ccf677098c1e08e189add0bd146f78498109f202575491a82f1815b6bc28008d

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cblas
$(PKG)_WEBSITE := http://www.netlib.org/blas/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1
$(PKG)_CHECKSUM := 0f6354fd67fabd909baf57ced2ef84e962db58fae126e4f41b21dd4fec60a2a3

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := ccfits
$(PKG)_WEBSITE := http://heasarc.gsfc.nasa.gov/fitsio/ccfits
$(PKG)_DESCR := CCfits
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.4
$(PKG)_CHECKSUM := ba6c5012b260adf7633f92581279ea582e331343d8c973981aa7de07242bd7f8

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cegui
$(PKG)_WEBSITE := http://cegui.org.uk/
$(PKG)_DESCR := Crazy Eddies GUI System (CEGUI)
$(PKG)_IGNORE :=
$(PKG)_VERSION := 9726a2b505fb
$(PKG)_CHECKSUM := 14b3da7f1f89693192cd9afbf2126f4519508245ed156de893828e31ce676e9e

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cfitsio
$(PKG)_WEBSITE := http://heasarc.gsfc.nasa.gov/fitsio/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3370
$(PKG)_CHECKSUM := 092897c6dae4dfe42d91d35a738e45e8236aa3d8f9b3ffc7f0e6545b8319c63a

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cgal
$(PKG)_WEBSITE := http://www.cgal.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 4.6.3
$(PKG)_CHECKSUM := e338027b8767c0a7a6e4fd8679182d1b83b5b1a0da0a1fe4546e7c0ca094fc21

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := check
$(PKG)_WEBSITE := http://check.sourceforge.net/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.10.0
$(PKG)_CHECKSUM := f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := chipmunk
$(PKG)_WEBSITE := https://chipmunk-physics.net/
$(PKG)_DESCR := Chipmunk Physics
$(PKG)_IGNORE :=
$(PKG)_VERSION := 6.2.2
$(PKG)_CHECKSUM := c51f0e3a30770f6b940de3228bee40a871aaf7611a1b5ec546a7d2b9e1041f97

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := chromaprint
$(PKG)_WEBSITE := http://acoustid.org/chromaprint
$(PKG)_DESCR := Chromaprint
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.1
$(PKG)_CHECKSUM := 6b14d7ea4964581b73bd3f8038c8857c01e446421c1ae99cbbf64de26b47cd12

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cimg
$(PKG)_WEBSITE := http://cimg.eu/
$(PKG)_DESCR := CImg Library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.6.3
$(PKG)_CHECKSUM := c2a3c62d05d1e322afa6afae086cf96df82a3a13b839e9bf1cedcb014d921ce7

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cloog
$(PKG)_WEBSITE := http://www.cloog.org/
$(PKG)_DESCR := CLooG Code Generator
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.18.1
$(PKG)_CHECKSUM := 02500a4edd14875f94fe84cbeda4290425cb0c1c2474c6f75d75a303d64b4196

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cmake
$(PKG)_WEBSITE := http://www.cmake.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.5.2
$(PKG)_CHECKSUM := 92d8410d3d981bb881dfff2aed466da55a58d34c7390d50449aa59b32bb5e62a

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cminpack
$(PKG)_WEBSITE := http://devernay.free.fr/hacks/cminpack/cminpack.html
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.4
$(PKG)_CHECKSUM := 3b517bf7dca68cc9a882883db96dac0a0d37d72aba6dfb0c9c7e78e67af503ca

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := coda
$(PKG)_WEBSITE := https://stcorp.nl/coda/
$(PKG)_DESCR := CODA
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.15.1
$(PKG)_CHECKSUM := 51076ff958ec15633d741ea021761fc6d8c6492f931175c489288481e37ac810

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := coin
$(PKG)_WEBSITE := https://bitbucket.org/Coin3D/
$(PKG)_DESCR := Coin3D
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.1.3
$(PKG)_CHECKSUM := 583478c581317862aa03a19f14c527c3888478a06284b9a46a0155fa5886d417

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cpp-netlib
$(PKG)_WEBSITE := http://cpp-netlib.org/
$(PKG)_DESCR := Boost C++ Networking Library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.11.2
$(PKG)_CHECKSUM := 71953379c5a6fab618cbda9ac6639d87b35cab0600a4450a7392bc08c930f2b1

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cppunit
$(PKG)_WEBSITE := http://www.freedesktop.org/wiki/Software/cppunit/
$(PKG)_DESCR := CppUnit
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.13.2
$(PKG)_CHECKSUM := 3f47d246e3346f2ba4d7c9e882db3ad9ebd3fcbd2e8b732f946e0e3eeb9f429f

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cryptopp
$(PKG)_WEBSITE := https://www.cryptopp.com/
$(PKG)_DESCR := Crypto++ Library
$(PKG)_IGNORE :=
$(PKG)_VERSION := 5.6.3
$(PKG)_CHECKSUM := 9390670a14170dd0f48a6b6b06f74269ef4b056d4718a1a329f6f6069dc957c9

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := crystalhd
$(PKG)_WEBSITE := http://www.broadcom.com/support/crystal_hd/
$(PKG)_DESCR := Broadcom Crystal HD Headers
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1
$(PKG)_CHECKSUM := 818d72fdbebcfc0a449d9e39153370c80325f2490798f82f1ed98c6bb60bc18c

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cunit
$(PKG)_WEBSITE := http://cunit.sourceforge.net/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.1-3
$(PKG)_CHECKSUM := f5b29137f845bb08b77ec60584fdb728b4e58f1023e6f249a464efa49a40f214

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := curl
$(PKG)_WEBSITE := http://curl.haxx.se/libcurl/
$(PKG)_DESCR := cURL
$(PKG)_IGNORE :=
$(PKG)_VERSION := 7.52.0
$(PKG)_CHECKSUM := c8f0114c7c72c8627d716416326593d061274b208cdf123c418c20c6dbe009c2

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := db
$(PKG)_WEBSITE := http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html
$(PKG)_DESCR := Oracle Berkeley DB
$(PKG)_IGNORE :=
$(PKG)_VERSION := 6.1.26
$(PKG)_CHECKSUM := dd1417af5443f326ee3998e40986c3c60e2a7cfb5bfa25177ef7cadb2afb13a6

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := dbus
$(PKG)_WEBSITE := http://dbus.freedesktop.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.11.8
$(PKG)_CHECKSUM := fa207530d694706e33378c87e65b2b4304eb99fff71fc6d6caa6f70591b9afd5

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := dcmtk
$(PKG)_WEBSITE := http://dicom.offis.de/dcmtk.php.en
$(PKG)_DESCR := DCMTK
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.6.0
$(PKG)_CHECKSUM := cfc509701122adfa359f1ee160e943c1548c7696b607dbb646c5a06f015ed33a

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := devil
$(PKG)_WEBSITE := http://openil.sourceforge.net/
$(PKG)_DESCR := DevIL
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.7.8
$(PKG)_CHECKSUM := 682ffa3fc894686156337b8ce473c954bf3f4fb0f3ecac159c73db632d28a8fd

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := djvulibre
$(PKG)_WEBSITE := http://djvu.sourceforge.net/
$(PKG)_DESCR := DjVuLibre
$(PKG)_VERSION := 3.5.27
$(PKG)_CHECKSUM := e69668252565603875fb88500cde02bf93d12d48a3884e472696c896e81f505f
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := dlfcn-win32
$(PKG)_WEBSITE := https://code.google.com/p/dlfcn-win32/
$(PKG)_DESCR := POSIX dlfcn wrapper for Windows
$(PKG)_IGNORE :=
$(PKG)_VERSION := e19bf07
$(PKG)_CHECKSUM := 6b31a8547547af27e5dfc092df1ea2c6ac562ce47b7ec08a0a4da4ed0b002767

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := eigen
$(PKG)_WEBSITE := http://eigen.tuxfamily.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.2.5
$(PKG)_CHECKSUM := 5f6e6cb88188e34185f43cb819d7dab9b48ef493774ff834e568f4805d3dc2f9

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := exiv2
$(PKG)_WEBSITE := http://www.exiv2.org/
$(PKG)_DESCR := Exiv2
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.25
$(PKG)_CHECKSUM := c80bfc778a15fdb06f71265db2c3d49d8493c382e516cb99b8c9f9cbde36efa4

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := expat
$(PKG)_WEBSITE := http://expat.sourceforge.net/
$(PKG)_DESCR := Expat XML Parser
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.2.0
$(PKG)_CHECKSUM := d9e50ff2d19b3538bd2127902a89987474e1a4db8e43a66a4d1a712ab9a504ff

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := faad2
$(PKG)_WEBSITE := http://www.audiocoding.com/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.7
$(PKG)_CHECKSUM := ee26ed1e177c0cd8fa8458a481b14a0b24ca0b51468c8b4c8b676fd3ceccd330

View File

@ -4,6 +4,8 @@
# GPL 2+, but it is with LGPL 2.1+. See docs/index.html#potential-legal-issues
PKG := fdk-aac
$(PKG)_WEBSITE := https://github.com/mstorsjo/fdk-aac
$(PKG)_DESCR := FDK-AAC
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.1.4
$(PKG)_CHECKSUM := 5910fe788677ca13532e3f47b7afaa01d72334d46a2d5e1d1f080f1173ff15ab

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := ffmpeg
$(PKG)_WEBSITE := http://www.ffmpeg.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.2.1
$(PKG)_CHECKSUM := 72abc55bea5ff5397ac82320fa5c4843a05f527d0d7912d66784c92fdfbd12fb

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := fftw
$(PKG)_WEBSITE := http://www.fftw.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.3.4
$(PKG)_CHECKSUM := 8f0cde90929bc05587c3368d2f15cd0530a60b8a9912a8e2979a72dbe5af0982

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := file
$(PKG)_WEBSITE := http://www.darwinsys.com/file/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 5.24
$(PKG)_CHECKSUM := 802cb3de2e49e88ef97cdcb52cd507a0f25458112752e398445cea102bc750ce

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := flac
$(PKG)_WEBSITE := http://www.xiph.org/flac/
$(PKG)_DESCR := FLAC
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.1
$(PKG)_CHECKSUM := 4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := flann
$(PKG)_WEBSITE := http://www.cs.ubc.ca/~mariusm/index.php/FLANN/FLANN
$(PKG)_DESCR := FLANN
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.8.4
$(PKG)_CHECKSUM := dfbb9321b0d687626a644c70872a2c540b16200e7f4c7bd72f91ae032f445c08

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := fltk
$(PKG)_WEBSITE := http://www.fltk.org/
$(PKG)_DESCR := FLTK
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.3
$(PKG)_CHECKSUM := f8398d98d7221d40e77bc7b19e761adaf2f1ef8bb0c30eceb7beb4f2273d0d97

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := fontconfig
$(PKG)_WEBSITE := http://fontconfig.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.12.1
$(PKG)_CHECKSUM := b449a3e10c47e1d1c7a6ec6e2016cca73d3bd68fbbd4f0ae5cc6b573f7d6c7f3

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := freeglut
$(PKG)_WEBSITE := http://freeglut.sourceforge.net/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.0.0
$(PKG)_CHECKSUM := 2a43be8515b01ea82bcfa17d29ae0d40bd128342f0930cd1f375f1ff999f76a2

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := freeimage
$(PKG)_WEBSITE := http://freeimage.sourceforge.net/
$(PKG)_DESCR := FreeImage
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.15.4
$(PKG)_CHECKSUM := eb6361519d33131690a0e726b085a05825e5adf9fb72c752d8d39100e48dc829

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := freetds
$(PKG)_WEBSITE := http://www.freetds.org/
$(PKG)_DESCR := FreeTDS
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.00.23
$(PKG)_CHECKSUM := 1be0cedc4ad026c28633c6587e84e35844dfa4e05e6779eae6d475572a64d36f

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := freetype-bootstrap
$(PKG)_WEBSITE := http://www.freetype.org/
$(PKG)_DESCR := freetype (without harfbuzz)
$(PKG)_IGNORE = $(freetype_IGNORE)
$(PKG)_VERSION = $(freetype_VERSION)
$(PKG)_CHECKSUM = $(freetype_CHECKSUM)

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := freetype
$(PKG)_WEBSITE := http://www.freetype.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.7
$(PKG)_CHECKSUM := d6a451f5b754857d2aa3964fd4473f8bc5c64e879b24516d780fb26bec7f7d48

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := fribidi
$(PKG)_WEBSITE := http://fribidi.org/
$(PKG)_DESCR := FriBidi
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.19.6
$(PKG)_CHECKSUM := cba8b7423c817e5adf50d28ec9079d14eafcec9127b9e8c8f1960c5ad585e17d

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := ftgl
$(PKG)_WEBSITE := http://sourceforge.net/projects/ftgl/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.1.3~rc5
$(PKG)_CHECKSUM := 521ff7bd62c459ff5372e269c223e2a6107a6a99a36afdc2ae634a973af70c59

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gc
$(PKG)_WEBSITE := http://www.hpl.hp.com/personal/Hans_Boehm/gc/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 7.2e
$(PKG)_CHECKSUM := 09315b48a82d600371207691126ad058c04677281ac318d86fa84c98c3c9af4b

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gcc
$(PKG)_WEBSITE := http://gcc.gnu.org/
$(PKG)_DESCR := GCC
$(PKG)_IGNORE := 5%
$(PKG)_VERSION := 4.9.4
$(PKG)_CHECKSUM := 6c11d292cd01b294f9f84c9a59c230d80e9e4a47e5c6355f046bb36d4f358092

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gd
$(PKG)_WEBSITE := http://www.libgd.org/
$(PKG)_DESCR := GD (without support for xpm)
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.1.0
$(PKG)_CHECKSUM := fa6665dfe3d898019671293c84d77067a3d2ede50884dbcb6df899d508370e5a

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gdal
$(PKG)_WEBSITE := http://www.gdal.org/
$(PKG)_DESCR := GDAL
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.1.2
$(PKG)_CHECKSUM := 69761c38acac8c6d3ea71304341f6982b5d66125a1a80d9088b6bfd2019125c9

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gdb
$(PKG)_WEBSITE := https://www.gnu.org/software/gdb/
$(PKG)_VERSION := 7.12
$(PKG)_CHECKSUM := 834ff3c5948b30718343ea57b11cbc3235d7995c6a4f3a5cecec8c8114164f94
$(PKG)_SUBDIR := gdb-$($(PKG)_VERSION)

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gdk-pixbuf
$(PKG)_WEBSITE := http://www.gdk-pixbuf.org/
$(PKG)_DESCR := GDK-pixbuf
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.32.3
$(PKG)_CHECKSUM := 2b6771f1ac72f687a8971e59810b8dc658e65e7d3086bd2e676e618fd541d031

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gendef
$(PKG)_WEBSITE := http://sourceforge.net/p/mingw-w64/wiki2/gendef/
$(PKG)_IGNORE = $(mingw-w64_IGNORE)
$(PKG)_VERSION = $(mingw-w64_VERSION)
$(PKG)_CHECKSUM = $(mingw-w64_CHECKSUM)

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := geoip-database
$(PKG)_WEBSITE := http://www.maxmind.com
$(PKG)_DESCR := GeoIP Legacy Database
$(PKG)_IGNORE :=
$(PKG)_VERSION := 20150317-1
$(PKG)_CHECKSUM := 45be84939fd22bef1ccaa1189f83c667fef275a16bbfb91f82b7b2068b4e3735

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := geos
$(PKG)_WEBSITE := http://trac.osgeo.org/geos/
$(PKG)_DESCR := GEOS
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.4.2
$(PKG)_CHECKSUM := 15e8bfdf7e29087a957b56ac543ea9a80321481cef4d4f63a7b268953ad26c53

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gettext
$(PKG)_WEBSITE := https://www.gnu.org/software/gettext/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.19.8.1
$(PKG)_CHECKSUM := ff942af0e438ced4a8b0ea4b0b6e0d6d657157c5e2364de57baa279c1c125c43

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := ghostscript
$(PKG)_WEBSITE := http://www.ghostscript.com/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 9.19
$(PKG)_NODOTVER := $(subst .,,$($(PKG)_VERSION))

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := giflib
$(PKG)_WEBSITE := http://sourceforge.net/projects/libungif/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 5.1.4
$(PKG)_CHECKSUM := df27ec3ff24671f80b29e6ab1c4971059c14ac3db95406884fc26574631ba8d5

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glew
$(PKG)_WEBSITE := http://glew.sourceforge.net/
$(PKG)_DESCR := GLEW
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.12.0
$(PKG)_CHECKSUM := af58103f4824b443e7fa4ed3af593b8edac6f3a7be3b30911edbc7344f48e4bf

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glfw2
$(PKG)_WEBSITE := http://www.glfw.org/
$(PKG)_DESCR := GLFW 2.x
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.7.9
$(PKG)_CHECKSUM := b7276dcadc85a07077834d1043f11ffd6a3a379647bb94361b4abc3ffca75e7d

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glfw3
$(PKG)_WEBSITE := http://www.glfw.org/
$(PKG)_DESCR := GLFW 3.x
$(PKG)_IGNORE :=
$(PKG)_VERSION := 3.1.2
$(PKG)_CHECKSUM := 6ac642087682aaf7f8397761a41a99042b2c656498217a1c63ba9706d1eef122

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glib
$(PKG)_WEBSITE := http://www.gtk.org/
$(PKG)_DESCR := GLib
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.44.1
$(PKG)_CHECKSUM := 8811deacaf8a503d0a9b701777ea079ca6a4277be10e3d730d2112735d5eca07

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glibmm
$(PKG)_WEBSITE := http://www.gtkmm.org/
$(PKG)_DESCR := GLibmm
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.42.0
$(PKG)_CHECKSUM := 985083d97378d234da27a7243587cc0d186897a4b2d3c1286f794089be1a3397

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glm
$(PKG)_WEBSITE := http://glm.g-truc.net
$(PKG)_DESCR := GLM - OpenGL Mathematics
$(PKG)_IGNORE :=
$(PKG)_VERSION := 0.9.7.6
$(PKG)_CHECKSUM := 872fdea580b69b752562adc60734d7472fd97d5724c4ead585564083deac3953

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := glpk
$(PKG)_WEBSITE := https://www.gnu.org/software/glpk/
$(PKG)_DESCR := GNU Linear Programming Kit
$(PKG)_IGNORE :=
$(PKG)_VERSION := 4.60
$(PKG)_CHECKSUM := 1356620cb0a0d33ac3411dd49d9fd40d53ece73eaec8f6b8d19a77887ff5e297

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gmp
$(PKG)_WEBSITE := http://www.gmplib.org/
$(PKG)_DESCR := GMP
$(PKG)_IGNORE :=
$(PKG)_VERSION := 6.1.2
$(PKG)_CHECKSUM := 87b565e89a9a684fe4ebeeddb8399dce2599f9c9049854ca8c0dfbdea0e21912

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gnutls
$(PKG)_WEBSITE := https://www.gnu.org/software/gnutls/
$(PKG)_DESCR := GnuTLS
$(PKG)_VERSION := 3.4.17
$(PKG)_CHECKSUM := 9b50e8a670d5e950425d96935c7ddd415eb6f8079615a36df425f09a3143172e
$(PKG)_SUBDIR := gnutls-$($(PKG)_VERSION)

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := googlemock
$(PKG)_WEBSITE := https://github.com/google/googlemock
$(PKG)_DESCR := Google Mock
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.7.0
$(PKG)_CHECKSUM := 3f20b6acb37e5a98e8c4518165711e3e35d47deb6cdb5a4dd4566563b5efd232

View File

@ -2,6 +2,8 @@
# See index.html for further information.
PKG := googletest
$(PKG)_WEBSITE := https://github.com/google/googletest
$(PKG)_DESCR := Google Test
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.7.0
$(PKG)_CHECKSUM := f73a6546fdf9fce9ff93a5015e0333a8af3062a152a9ad6bcb772c96687016cc

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := graphicsmagick
$(PKG)_WEBSITE := http://www.graphicsmagick.org/
$(PKG)_DESCR := GraphicsMagick
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.21
$(PKG)_CHECKSUM := 9045304d991776b6a37e1b45b9b6ef152593ada0d49bc744263565617cbf3c1f

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gsl
$(PKG)_WEBSITE := https://www.gnu.org/software/gsl/
$(PKG)_DESCR := GSL
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.16
$(PKG)_CHECKSUM := 73bc2f51b90d2a780e6d266d43e487b3dbd78945dd0b04b14ca5980fe28d2f53

View File

@ -1,6 +1,8 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gsoap
$(PKG)_WEBSITE := http://gsoap2.sourceforge.net/
$(PKG)_DESCR := gSOAP
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.8.22
$(PKG)_CHECKSUM := 30b045af2633ac5e92ea92fdb4baad784afe6e6548b5ef2f9cad48df6a7d3e48

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gst-plugins-bad
$(PKG)_WEBSITE := http://gstreamer.freedesktop.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.6.2
$(PKG)_CHECKSUM := 650855e39ff56a8bb6cb0c192109c5926ce12f536d06e19ebf829de71ef396fe

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gst-plugins-base
$(PKG)_WEBSITE := http://gstreamer.freedesktop.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.6.2
$(PKG)_CHECKSUM := c75dd400e451526ed71e1c4955e33d470a2581f5e71ecf84920a41c0a5c75322

View File

@ -1,6 +1,7 @@
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gst-plugins-good
$(PKG)_WEBSITE := http://gstreamer.freedesktop.org/
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.6.2
$(PKG)_CHECKSUM := 876e54dfce93274b98e024f353258d35fa4d49d1f9010069e676c530f6eb6a92

Some files were not shown because too many files have changed in this diff Show More