changeset 3917:d18874830004

of-queueing: add to mxe * src/of-queueing.mk: new file * dist-files.mk: add of-queueing.mk * index.html: add queueing * Makefile.in: add queueing * build_packages.m: add install of queueing
author John Donoghue <john.donoghue@ieee.org>
date Sat, 25 Apr 2015 19:43:15 -0400
parents af43c4d3d12f
children b52d090d04d3
files Makefile.in build_packages.m index.html src/of-queueing.mk
diffstat 4 files changed, 28 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Sat Apr 25 19:32:25 2015 -0400
+++ b/Makefile.in	Sat Apr 25 19:43:15 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 lssa)
+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 queueing)
 # 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	Sat Apr 25 19:32:25 2015 -0400
+++ b/build_packages.m	Sat Apr 25 19:43:15 2015 -0400
@@ -55,4 +55,5 @@
 try_install splines-1.2.7.tar.gz
 try_install dataframe-1.1.0.tar.gz
 try_install lssa-0.1.2.tar.gz
+try_install queueing-1.2.3.tar.gz
 
--- a/index.html	Sat Apr 25 19:32:25 2015 -0400
+++ b/index.html	Sat Apr 25 19:43:15 2015 -0400
@@ -1937,6 +1937,10 @@
         <td class="package">of-quaternion</td>
         <td class="website"><a href="http://octave.sf.net/">Octave Forge quaternion package</a></td>
     </tr>
+   <tr>
+        <td class="package">of-queueing</td>
+        <td class="website"><a href="http://octave.sf.net/">Octave Forge queueing package</a></td>
+    </tr>
     <tr>
         <td class="package">of-signal</td>
         <td class="website"><a href="http://octave.sf.net/">Octave Forge signal package</a></td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/of-queueing.mk	Sat Apr 25 19:43:15 2015 -0400
@@ -0,0 +1,22 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := of-queueing
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 1.2.3
+$(PKG)_CHECKSUM := 72150daf891b0af0d02c690cf462e219dd2f564d
+$(PKG)_REMOTE_SUBDIR := 
+$(PKG)_SUBDIR   := queueing
+$(PKG)_FILE     := queueing-$($(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="queueing-\([0-9][^"]*\).tar.gz".*,\1,p' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    $(OCTAVE_FORGE_PKG_BUILD)
+endef