# HG changeset patch # User Anirudha Bose # Date 1374955153 -19800 # Node ID 831e8b94553ff06983ac85e75902553f6071a1d9 # Parent 89dea9a489534817a62039d7406099eb1007fc3c Include Octave Forge 'linear-algebra' package diff -r 89dea9a48953 -r 831e8b94553f Makefile.in --- 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) diff -r 89dea9a48953 -r 831e8b94553f build_packages.m --- 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 diff -r 89dea9a48953 -r 831e8b94553f index.html --- 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 @@ Octave Forge io package + of-linear-algebra + 2.2.0 + Octave Forge linear-algebra package + + of-miscellaneous 1.2.0 Octave Forge miscellaneous package diff -r 89dea9a48953 -r 831e8b94553f src/of-linear-algebra.mk --- /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