F: package/orc/
F: package/wampcc/
+N: Sven Oliver Moll <svolli@svolli.de>
+F: package/most/
+
N: Theo Debrouwere <t.debrouwere@televic.com>
F: package/pugixml/
source "package/joe/Config.in"
source "package/less/Config.in"
source "package/mc/Config.in"
+ source "package/most/Config.in"
source "package/nano/Config.in"
source "package/uemacs/Config.in"
source "package/vim/Config.in"
--- /dev/null
+config BR2_PACKAGE_MOST
+ bool "most"
+ depends on BR2_USE_MMU # slang
+ select BR2_PACKAGE_SLANG
+ help
+ most is a powerful pager, including features like multi
+ document support, hex view and unpack on-the-fly.
+
+ https://www.jedsoft.com/most/
+
+ Note: this program depends on the slang library which is
+ rather large to be used just for this pager.
--- /dev/null
+# From https://www.jedsoft.org/releases/most/
+sha1 db811669a6b22c15478c957b439b5e4483ce1c95 most-5.1.0.tar.gz
+# Locally computed
+sha256 db805d1ffad3e85890802061ac8c90e3c89e25afb184a794e03715a3ed190501 most-5.1.0.tar.gz
+sha256 1b2a567f289f66a143c56353e7b3d4fa5862514a5e3c5cfdf8b02ee5e5aaa953 COPYING
+sha256 47ad1c3f9b94d6ec42d9bee6c5df980c5c2daa5b9d22113545ae6a3f21ca2f52 COPYRIGHT
--- /dev/null
+################################################################################
+#
+# most
+#
+################################################################################
+
+MOST_SITE = http://www.jedsoft.org/releases/most
+MOST_VERSION = 5.1.0
+MOST_LICENSE = GPL-2.0+
+MOST_LICENSE_FILES = COPYING COPYRIGHT
+MOST_DEPENDENCIES = slang
+
+MOST_CONF_OPTS = --with-slang=$(STAGING_DIR)/usr
+
+define MOST_REMOVE_LOCAL_SLANG_CHECK
+ $(SED) 's/ slangversion / /g' $(@D)/src/Makefile.in
+endef
+MOST_POST_PATCH_HOOKS += MOST_REMOVE_LOCAL_SLANG_CHECK
+
+define MOST_INSTALL_TARGET_CMDS
+ $(INSTALL) -D -m 0755 $(@D)/src/objs/most $(TARGET_DIR)/usr/bin/most
+endef
+
+$(eval $(autotools-package))