changeset 3377:831e8b94553f

Include Octave Forge 'linear-algebra' package
author Anirudha Bose <ani07nov@gmail.com>
date Sun, 28 Jul 2013 01:29:13 +0530
parents 89dea9a48953
children 1b0264f7b274
files Makefile.in build_packages.m index.html src/of-linear-algebra.mk
diffstat 4 files changed, 27 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Sun Jul 28 00:46:28 2013 +0530
+++ b/Makefile.in	Sun Jul 28 01:29:13 2013 +0530
@@ -350,7 +350,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)
+OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra)
 
 MAKE_SHARED_FROM_STATIC := \
   $(TOP_DIR)/tools/make-shared-from-static $(MAKE_SHARED_FROM_STATIC_OPTIONS)
--- a/build_packages.m	Sun Jul 28 00:46:28 2013 +0530
+++ b/build_packages.m	Sun Jul 28 01:29:13 2013 +0530
@@ -14,4 +14,5 @@
 pkg install -global -auto geometry-1.7.0.tar.gz
 pkg install -global -auto windows-1.2.1.tar.gz
 pkg install -global -auto odepkg-0.8.4.tar.gz
+pkg install -global -auto linear-algebra-2.2.0.tar.gz
 
--- a/index.html	Sun Jul 28 00:46:28 2013 +0530
+++ b/index.html	Sun Jul 28 01:29:13 2013 +0530
@@ -1967,6 +1967,11 @@
         <td id="of-io-website"><a href="http://octave.sf.net/">Octave Forge io package</a></td>
     </tr>
     <tr>
+        <td id="of-linear-algebra-package">of-linear-algebra</td>
+        <td id="of-linear-algebra-version">2.2.0</td>
+        <td id="of-linear-algebra-website"><a href="http://octave.sf.net/">Octave Forge linear-algebra package</a></td>
+    </tr>
+    <tr>
         <td id="of-miscellaneous-package">of-miscellaneous</td>
         <td id="of-miscellaneous-version">1.2.0</td>
         <td id="of-miscellaneous-website"><a href="http://octave.sf.net/">Octave Forge miscellaneous package</a></td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-linear-algebra.mk	Sun Jul 28 01:29:13 2013 +0530
@@ -0,0 +1,20 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-linear-algebra
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := 513d69169248c903e57cbf8b6a82e850e377045b
+$(PKG)_REMOTE_SUBDIR :=
+$(PKG)_SUBDIR   := linear-algebra
+$(PKG)_FILE     := linear-algebra-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := '$(OCTAVE_FORGE_BASE_URL)/$($(PKG)_FILE)/download'
+$(PKG)_DEPS     :=
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+define $(PKG)_BUILD
+    $(OCTAVE_FORGE_PKG_BUILD)
+endef