You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2006-2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=minicom
  9. PKG_VERSION:=2.7.1
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://alioth.debian.org/frs/download.php/file/4215
  13. PKG_HASH:=532f836b7a677eb0cb1dca8d70302b73729c3d30df26d58368d712e5cca041f1
  14. PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
  15. PKG_LICENSE:=GPL-2.0
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_CPE_ID:=cpe:/a:minicom:minicom
  18. PKG_FIXUP:=autoreconf
  19. include $(INCLUDE_DIR)/nls.mk
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/minicom
  22. SECTION:=utils
  23. CATEGORY:=Utilities
  24. DEPENDS:=$(ICONV_DEPENDS) $(INTL_DEPENDS) +libncurses
  25. TITLE:=Terminal emulation program
  26. URL:=http://alioth.debian.org/projects/minicom/
  27. SUBMENU:=Terminal
  28. endef
  29. define Package/minicom/conffiles
  30. /etc/minirc.dfl
  31. endef
  32. define Package/minicom/install
  33. $(INSTALL_DIR) $(1)/usr/sbin
  34. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
  35. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ascii-xfr $(1)/usr/sbin/
  36. endef
  37. $(eval $(call BuildPackage,minicom))