# HG changeset patch # User John Donoghue # Date 1434416377 14400 # Node ID 55f3a9ff20b86bf58750081c8f40295f6bbccf41 # Parent e1c46df4295173a91a6d32283b9cce9601fc1548 of-interval: add to mxe-octave * src/of-interval.mk: new file * dist-files.mk: add of-interval.mk. * index.html: add of-interval * Makefile.in: add of-interval * build_packages.m: add interval package diff -r e1c46df42951 -r 55f3a9ff20b8 Makefile.in --- a/Makefile.in Mon Jun 15 20:50:52 2015 -0400 +++ b/Makefile.in Mon Jun 15 20:59:37 2015 -0400 @@ -427,7 +427,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 linear-algebra sockets zenity 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 ga odepkg) +OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity 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 ga odepkg interval) # 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))) diff -r e1c46df42951 -r 55f3a9ff20b8 build_packages.m --- a/build_packages.m Mon Jun 15 20:50:52 2015 -0400 +++ b/build_packages.m Mon Jun 15 20:59:37 2015 -0400 @@ -59,4 +59,5 @@ try_install octcdf-1.1.8.tar.gz try_install strings-1.2.0.tar.gz try_install ga-0.10.0.tar.gz +try_install interval-1.0.0.tar.gz diff -r e1c46df42951 -r 55f3a9ff20b8 dist-files.mk --- a/dist-files.mk Mon Jun 15 20:50:52 2015 -0400 +++ b/dist-files.mk Mon Jun 15 20:59:37 2015 -0400 @@ -467,6 +467,7 @@ of-generate_html.mk \ of-geometry.mk \ of-image.mk \ + of-interval.mk \ of-instrument-control.mk \ of-io.mk \ of-linear-algebra-1-cross-fixes.patch \ diff -r e1c46df42951 -r 55f3a9ff20b8 index.html --- a/index.html Mon Jun 15 20:50:52 2015 -0400 +++ b/index.html Mon Jun 15 20:59:37 2015 -0400 @@ -1910,6 +1910,10 @@ Octave Forge image package + of-interval + Octave Forge interval package + + of-instrument-control Octave Forge instrument-control package diff -r e1c46df42951 -r 55f3a9ff20b8 src/of-interval.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-interval.mk Mon Jun 15 20:59:37 2015 -0400 @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := of-interval +$(PKG)_IGNORE := +$(PKG)_VERSION := 1.0.0 +$(PKG)_CHECKSUM := 8ba9a76367d56c855c2d7088eca9c788221dcc7b +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := interval-$($(PKG)_VERSION) +$(PKG)_FILE := interval-$($(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="interval-\([0-9][^"]*\).tar.gz".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + $(OCTAVE_FORGE_PKG_BUILD) +endef