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.

46 lines
1.1 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:=1
  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_FIXUP:=autoreconf
  18. include $(INCLUDE_DIR)/nls.mk
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/minicom
  21. SECTION:=utils
  22. CATEGORY:=Utilities
  23. DEPENDS:=$(ICONV_DEPENDS) $(INTL_DEPENDS) +libncurses
  24. TITLE:=Terminal emulation program
  25. URL:=http://alioth.debian.org/projects/minicom/
  26. SUBMENU:=Terminal
  27. endef
  28. define Package/minicom/conffiles
  29. /etc/minirc.dfl
  30. endef
  31. define Package/minicom/install
  32. $(INSTALL_DIR) $(1)/usr/sbin
  33. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
  34. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ascii-xfr $(1)/usr/sbin/
  35. endef
  36. $(eval $(call BuildPackage,minicom))