changeset 3916:af43c4d3d12f

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
author John Donoghue <john.donoghue@ieee.org>
date Sat, 25 Apr 2015 19:32:25 -0400
parents 1aff35ff98c1
children d18874830004
files Makefile.in build_packages.m dist-files.mk index.html src/of-lssa.mk
diffstat 5 files changed, 29 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)))
 
--- 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
 
--- 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 \
--- 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 @@
         <td class="website"><a href="http://octave.sf.net/">Octave Forge linear-algebra package</a></td>
     </tr>
     <tr>
+        <td class="package">of-lssa</td>
+        <td class="website"><a href="http://octave.sf.net/">Octave Forge lssa package</a></td>
+    </tr>
+    <tr>
         <td class="package">of-ltfat</td>
         <td class="website"><a href="http://octave.sf.net/">Octave Forge ltfat package</a></td>
     </tr>
--- /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