Commit 5c959c11 authored by Simon Dawson's avatar Simon Dawson Committed by Peter Korsgaard
Browse files

nanocom: new package

parent e2b296ad
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -209,6 +209,7 @@ source "package/mdadm/Config.in"
source "package/memtester/Config.in"
source "package/minicom/Config.in"
source "package/mtd/Config.in"
source "package/nanocom/Config.in"
source "package/ntfs-3g/Config.in"
source "package/ofono/Config.in"
source "package/open2300/Config.in"
+11 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_NANOCOM
	bool "nanocom"
	help
	  Nanocom is based upon microcom (http://microcom.port5.com/) but
	  removes the scripting and logging features while introducing support
	  for setting local/remote echo, parity and stop bits. It also follows
	  a more standard command line style using the getopt function.
	  Internally much of the code has been rewritten and reformatted, the
	  menu system in particular is almost entirely different.

	  http://nanocom.sourceforge.net/
+27 −0
Original line number Diff line number Diff line
#############################################################
#
# nanocom
#
#############################################################
NANOCOM_VERSION = 2.6.1
NANOCOM_SOURCE = nanocom.tar.gz
NANOCOM_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/nanocom/nanocom/v1.0

# N.B. Don't strip any path components during extraction.
define NANOCOM_EXTRACT_CMDS
	gzip -d -c $(DL_DIR)/$(NANOCOM_SOURCE) | tar --strip-components=0 -C $(NANOCOM_DIR) -xf -
endef

define NANOCOM_BUILD_CMDS
	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef

define NANOCOM_INSTALL_TARGET_CMDS
	$(INSTALL) -m 0755 -D $(@D)/nanocom $(TARGET_DIR)/usr/bin/nanocom
endef

define NANOCOM_UNINSTALL_TARGET_CMDS
	$(RM) $(TARGET_DIR)/usr/bin/nanocom
endef

$(eval $(call GENTARGETS))