# HG changeset patch # User John Donoghue # Date 1430055029 14400 # Node ID 282ca0892ed00c3e5ef5cf86686c74495f8c8571 # Parent b52d090d04d32da5b2d64a92f07688d12129faed of-ga: add to mxe * src/of-ga.mk: new file * build_packages.m: add install of ga * index.html: add of-ga * Makefile.in: add ga * dist-files.mk: add of-ga.mk diff -r b52d090d04d3 -r 282ca0892ed0 Makefile.in --- a/Makefile.in Sat Apr 25 19:50:48 2015 -0400 +++ b/Makefile.in Sun Apr 26 09:30:29 2015 -0400 @@ -419,7 +419,7 @@ endif OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases' -OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra sockets zenity actuarial data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings octcdf financial stk splines dataframe lssa queueing) +OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra sockets zenity actuarial data-smoothing fuzzy-logic-toolkit quaternion fits fl-core tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings octcdf financial stk splines dataframe lssa queueing ga) # get ALL deps for all of- packages, regardless of whethe building the actual forge package in the installer OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(wildcard $(TOP_DIR)/src/of-*.mk),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p))) diff -r b52d090d04d3 -r 282ca0892ed0 build_packages.m --- a/build_packages.m Sat Apr 25 19:50:48 2015 -0400 +++ b/build_packages.m Sun Apr 26 09:30:29 2015 -0400 @@ -59,4 +59,5 @@ try_install nurbs-1.3.9.tar.gz try_install octcdf-1.1.8.tar.gz try_install strings-1.1.0.tar.gz +try_install ga-0.10.0.tar.gz diff -r b52d090d04d3 -r 282ca0892ed0 dist-files.mk --- a/dist-files.mk Sat Apr 25 19:50:48 2015 -0400 +++ b/dist-files.mk Sun Apr 26 09:30:29 2015 -0400 @@ -462,6 +462,7 @@ of-fl-core-1-fixes.patch \ of-fl-core.mk \ of-fuzzy-logic-toolkit.mk \ + of-ga.mk \ of-general.mk \ of-generate_html.mk \ of-geometry.mk \ diff -r b52d090d04d3 -r 282ca0892ed0 index.html --- a/index.html Sat Apr 25 19:50:48 2015 -0400 +++ b/index.html Sun Apr 26 09:30:29 2015 -0400 @@ -1874,6 +1874,10 @@ Octave Forge fuzzy-logic-toolkit package + of-ga + Octave Forge ga package + + of-general Octave Forge general package diff -r b52d090d04d3 -r 282ca0892ed0 src/of-ga.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-ga.mk Sun Apr 26 09:30:29 2015 -0400 @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := of-ga +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.10.0 +$(PKG)_CHECKSUM := 4445a0869d48bba4284f658dd4459a63d3c521d0 +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := ga +$(PKG)_FILE := ga-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download' +$(PKG)_DEPS := + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://$(SOURCEFORGE_MIRROR)/projects/octave/files/Octave%20Forge%20Packages/Individual%20Package%20Releases/' | \ + $(SED) -n 's,.*title="ga-\([0-9][^"]*\).tar.gz".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + $(OCTAVE_FORGE_PKG_BUILD) +endef