# HG changeset patch # User Anirudha Bose # Date 1374952588 -19800 # Node ID 89dea9a489534817a62039d7406099eb1007fc3c # Parent 796da09563d0f023651d1084ebf6b9572d2a05a9 Include Octave Forge 'odepkg' package diff -r 796da09563d0 -r 89dea9a48953 Makefile.in --- a/Makefile.in Tue Dec 31 20:40:21 2013 -0500 +++ b/Makefile.in Sun Jul 28 00:46:28 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) +OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows odepkg) MAKE_SHARED_FROM_STATIC := \ $(TOP_DIR)/tools/make-shared-from-static $(MAKE_SHARED_FROM_STATIC_OPTIONS) diff -r 796da09563d0 -r 89dea9a48953 build_packages.m --- a/build_packages.m Tue Dec 31 20:40:21 2013 -0500 +++ b/build_packages.m Sun Jul 28 00:46:28 2013 +0530 @@ -13,4 +13,5 @@ pkg install -global -auto statistics-1.1.3.tar.gz 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 diff -r 796da09563d0 -r 89dea9a48953 index.html --- a/index.html Tue Dec 31 20:40:21 2013 -0500 +++ b/index.html Sun Jul 28 00:46:28 2013 +0530 @@ -1972,6 +1972,11 @@ Octave Forge miscellaneous package + of-odepkg + 0.8.4 + Octave Forge odepkg package + + of-optim 1.2.2 Octave Forge optim package diff -r 796da09563d0 -r 89dea9a48953 src/of-odepkg.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/of-odepkg.mk Sun Jul 28 00:46:28 2013 +0530 @@ -0,0 +1,21 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := of-odepkg +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 74b7e88ad5a104e064c413f077a5e5327741efb4 +$(PKG)_REMOTE_SUBDIR := +$(PKG)_SUBDIR := +$(PKG)_FILE := odepkg-$($(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 + mkdir -p '$(HOST_PREFIX)/src' + $(INSTALL) -m644 '$(PKG_DIR)/$($(PKG)_FILE)' '$(HOST_PREFIX)/src' +endef