# HG changeset patch # User John Donoghue # Date 1430004745 14400 # Node ID af43c4d3d12f152764f7e6d0c26d75bbe32ad2ed # Parent 1aff35ff98c112cd2e1c60cbdd8e5c4e1eb8bb4a of-lssa: add to mxe * src/of-lssa.mk: new file * Makefile.in: add lssa * index.html: add lssa * dist-files.mk: add src/of-lssa.mk * build_packages.m: add install of lssa diff -r 1aff35ff98c1 -r af43c4d3d12f Makefile.in --- a/Makefile.in Fri Apr 24 10:42:11 2015 -0400 +++ b/Makefile.in Sat Apr 25 19:32:25 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) +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) # 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 1aff35ff98c1 -r af43c4d3d12f build_packages.m --- a/build_packages.m Fri Apr 24 10:42:11 2015 -0400 +++ b/build_packages.m Sat Apr 25 19:32:25 2015 -0400 @@ -54,4 +54,5 @@ try_install stk-2.2.1.tar.gz try_install splines-1.2.7.tar.gz try_install dataframe-1.1.0.tar.gz +try_install lssa-0.1.2.tar.gz diff -r 1aff35ff98c1 -r af43c4d3d12f dist-files.mk --- a/dist-files.mk Fri Apr 24 10:42:11 2015 -0400 +++ b/dist-files.mk Sat Apr 25 19:32:25 2015 -0400 @@ -470,6 +470,7 @@ of-io.mk \ of-linear-algebra-1-cross-fixes.patch \ of-linear-algebra.mk \ + of-lssa.mk \ of-ltfat-1-mingw-fixes.patch \ of-ltfat.mk \ of-miscellaneous-1-fixes.patch \ diff -r 1aff35ff98c1 -r af43c4d3d12f index.html --- a/index.html Fri Apr 24 10:42:11 2015 -0400 +++ b/index.html Sat Apr 25 19:32:25 2015 -0400 @@ -1902,6 +1902,10 @@ Octave Forge linear-algebra package + of-lssa + Octave Forge lssa package + + of-ltfat Octave Forge ltfat package diff -r 1aff35ff98c1 -r af43c4d3d12f src/of-lssa.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-lssa.mk Sat Apr 25 19:32:25 2015 -0400 @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := of-lssa +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.1.2 +$(PKG)_CHECKSUM := ea22c20223a04bd8e6e2c1b09342f5c153111b9b +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := lssa +$(PKG)_FILE := lssa-$($(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="lssa-\([0-9][^"]*\).tar.gz".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + $(OCTAVE_FORGE_PKG_BUILD) +endef