# HG changeset patch # User John Donoghue # Date 1428669332 14400 # Node ID 3fcb38c52a0152486b158c353ea78e1e56bfb9df # Parent dcd4cc57e1fc5c2b2916f89e5f9021db69d1ceb5 og-generate_hmtl: add to mxe-octave * src/of-generate_html.mk: new file * dist-files.mk: add of-generate_html.mk * index.html: add of-generate_html * build_packages.m: add generate_html diff -r dcd4cc57e1fc -r 3fcb38c52a01 Makefile.in --- a/Makefile.in Fri Apr 10 07:47:53 2015 -0400 +++ b/Makefile.in Fri Apr 10 08:35:32 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) +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) # 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 dcd4cc57e1fc -r 3fcb38c52a01 build_packages.m --- a/build_packages.m Fri Apr 10 07:47:53 2015 -0400 +++ b/build_packages.m Fri Apr 10 08:35:32 2015 -0400 @@ -49,4 +49,5 @@ try_install ltfat-2.0.1.tar.gz try_install database-2.3.1.tar.gz try_install instrument-control-0.2.1.tar.gz +try_install generate_html-0.1.7.tar.gz diff -r dcd4cc57e1fc -r 3fcb38c52a01 dist-files.mk --- a/dist-files.mk Fri Apr 10 07:47:53 2015 -0400 +++ b/dist-files.mk Fri Apr 10 08:35:32 2015 -0400 @@ -458,6 +458,7 @@ of-fl-core.mk \ of-fuzzy-logic-toolkit.mk \ of-general.mk \ + of-generate_html.mk \ of-geometry.mk \ of-image.mk \ of-instrument-control.mk \ diff -r dcd4cc57e1fc -r 3fcb38c52a01 index.html --- a/index.html Fri Apr 10 07:47:53 2015 -0400 +++ b/index.html Fri Apr 10 08:35:32 2015 -0400 @@ -1870,6 +1870,10 @@ Octave Forge general package + of-generate_html + Octave Forge generate_html package + + of-geometry Octave Forge geometry package diff -r dcd4cc57e1fc -r 3fcb38c52a01 src/of-generate_html.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-generate_html.mk Fri Apr 10 08:35:32 2015 -0400 @@ -0,0 +1,22 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := of-generate_html +$(PKG)_IGNORE := +$(PKG)_VERSION := 0.1.7 +$(PKG)_CHECKSUM := 403b60499da513ed6d5cdd2091f94d43dc25b0ff +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := generate_html-$($(PKG)_VERSION) +$(PKG)_FILE := generate_html-$($(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="generate_html-\([0-9][^"]*\).tar.gz".*,\1,p' | \ + head -1 +endef + +define $(PKG)_BUILD + $(OCTAVE_FORGE_PKG_BUILD) +endef