changeset 3385:d7a1542fa3b0

Add of-actuarial package * Makefile.am: add of-actuarial package to OCTAVE_FORGE_PACKAGES * build_packages.m: add load of of-actuarial-1.1.0.tar.gz * dist-files.mk: added of-actuarial package. * index.html: add of-actuarial-package. * src/of-actuarial.mk: New file.
author John Donoghue <john.donoghue@ieee.org>
date Wed, 01 Jan 2014 19:06:32 -0500
parents 0de28586712a
children 17ef0d555e71
files Makefile.in build_packages.m index.html src/of-actuarial.mk
diffstat 4 files changed, 27 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Wed Jan 01 17:45:54 2014 -0500
+++ b/Makefile.in	Wed Jan 01 19:06:32 2014 -0500
@@ -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 linear-algebra sockets zenity)
+OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg linear-algebra sockets zenity actuarial)
 
 MAKE_SHARED_FROM_STATIC := \
   $(TOP_DIR)/tools/make-shared-from-static $(MAKE_SHARED_FROM_STATIC_OPTIONS)
--- a/build_packages.m	Wed Jan 01 17:45:54 2014 -0500
+++ b/build_packages.m	Wed Jan 01 19:06:32 2014 -0500
@@ -17,4 +17,5 @@
 pkg install -global -auto linear-algebra-2.2.0.tar.gz
 pkg install -global -auto sockets-1.0.8.tar.gz
 pkg install -global -auto zenity-0.5.7.tar.gz
+pkg install -global -auto actuarial-1.1.0.tar.gz
 
--- a/index.html	Wed Jan 01 17:45:54 2014 -0500
+++ b/index.html	Wed Jan 01 19:06:32 2014 -0500
@@ -1943,6 +1943,11 @@
         <td id="octave-website"><a href="http://octave.org/">Octave</a></td>
     </tr>
     <tr>
+        <td id="of-actuarial-package">of-actuarial</td>
+        <td id="of-actuarial-version">1.1.0</td>
+        <td id="of-actuarial-website"><a href="http://octave.sf.net/">Octave Forge actuarial package</a></td>
+    </tr>
+    <tr>
         <td id="of-communications-package">of-communications</td>
         <td id="of-communications-version">1.2.0</td>
         <td id="of-communications-website"><a href="http://octave.sf.net/">Octave Forge communications package</a></td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-actuarial.mk	Wed Jan 01 19:06:32 2014 -0500
@@ -0,0 +1,20 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-actuarial
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := 89cc7a697f347329a107676afcf09575faa2f386
+$(PKG)_REMOTE_SUBDIR := 
+$(PKG)_SUBDIR   := actuarial
+$(PKG)_FILE     := actuarial-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := http://$(SOURCEFORGE_MIRROR)/octave/$($(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