changeset 7026:ef723693f331

Add opkg-tablicious * src/opkg-tablicious.mk: anew file * Makefile.in, dist-files.mk, index.html: add ref to new package
author John Donoghue <john.donoghue@ieee.org>
date Sun, 07 Jan 2024 08:54:27 -0500
parents 17c6a9448020
children 986071b5b470
files Makefile.in dist-files.mk index.html src/opkg-tablicious.mk
diffstat 4 files changed, 30 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Sat Jan 06 08:58:05 2024 -0500
+++ b/Makefile.in	Sun Jan 07 08:54:27 2024 -0500
@@ -561,7 +561,7 @@
 ## Packages removed from list because build is broken:
 ## None.
 OCTAVE_FORGE_PACKAGES := $(addprefix of-,audio communications control database dataframe data-smoothing dicom financial fuzzy-logic-toolkit ga general generate_html geometry gsl image instrument-control interval io linear-algebra lssa ltfat mapping matgeom miscellaneous nan netcdf nurbs ocs octproj optim optiminterp quaternion queueing signal sockets sparsersb splines statistics stk strings struct symbolic tisean tsa video windows zeromq)
-OCTAVE_OTHER_PACKAGES := $(addprefix opkg-,biosig cfitsio mqtt)
+OCTAVE_OTHER_PACKAGES := $(addprefix opkg-,biosig cfitsio mqtt tablicious)
 # get ALL deps for all of- packages, regardless of whether building the actual forge package in the installer
 OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(addprefix $(TOP_DIR)/src/,$(addsuffix .mk,$(OCTAVE_FORGE_PACKAGES))),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p)))
 OCTAVE_OTHER_PKG_DEPS:= $(sort $(foreach p,$(addprefix $(TOP_DIR)/src/,$(addsuffix .mk,$(OCTAVE_OTHER_PACKAGES))),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p)))
--- a/dist-files.mk	Sat Jan 06 08:58:05 2024 -0500
+++ b/dist-files.mk	Sun Jan 07 08:54:27 2024 -0500
@@ -571,6 +571,7 @@
   opkg-biosig.mk \
   opkg-cfitsio.mk \
   opkg-mqtt.mk \
+  opkg-tablicious.mk \
   opus.mk \
   opusfile.mk \
   paho-mqtt-c-1-fixes.patch \
--- a/index.html	Sat Jan 06 08:58:05 2024 -0500
+++ b/index.html	Sun Jan 07 08:54:27 2024 -0500
@@ -2534,6 +2534,10 @@
         <td class="website"><a href="https://sourceforge.net/projects/octave-mqtt/">MQTT Octave Package</a></td>
     </tr>
     <tr>
+        <td class="package">opkg-tablicious</td>
+        <td class="website"><a href="https://github.com/apjanke/octave-tablicious">Tablicious Octave Package</a></td>
+    </tr>
+    <tr>
         <td class="package">opus</td>
         <td class="website"><a href="https://opus-codec.org/">opus</a></td>
     </tr>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/opkg-tablicious.mk	Sun Jan 07 08:54:27 2024 -0500
@@ -0,0 +1,24 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := opkg-tablicious
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 0.3.7
+$(PKG)_CHECKSUM := 93c802601bb65f7de4bb10889cbb8494b79ea031
+$(PKG)_SUBDIR   := tablicious-$($(PKG)_VERSION)
+$(PKG)_FILE     := $($(PKG)_SUBDIR).tar.gz
+x$(PKG)_URL      := https://github.com/apjanke/octave-tablicious/archive/v$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := https://github.com/apjanke/octave-tablicious/releases/download/v0.3.7/tablicious-0.3.7.tar.gz
+$(PKG)_DEPS     := 
+
+ifeq ($(ENABLE_BINARY_PACKAGES),yes)
+  $(PKG)_DEPS += $(OCTAVE_TARGET)
+endif
+
+define $(PKG)_UPDATE
+    $(call GITHUB_PKG_UPDATE,apjanke,octave-tablicious,v)
+endef
+
+define $(PKG)_BUILD
+  $(OCTAVE_FORGE_PKG_BUILD)
+endef