setserial: introduce package 5271/head
authorJo-Philipp Wich <jo@mein.io>
Tue, 12 Dec 2017 21:05:55 +0000 (22:05 +0100)
committerJo-Philipp Wich <jo@mein.io>
Tue, 12 Dec 2017 21:05:55 +0000 (22:05 +0100)
This packages setserial, the standard Linux program for setting serial
device attributes such as baud rate, flow control etc.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
utils/setserial/Makefile [new file with mode: 0644]

diff --git a/utils/setserial/Makefile b/utils/setserial/Makefile
new file mode 100644 (file)
index 0000000..0a7be5a
--- /dev/null
@@ -0,0 +1,34 @@
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=setserial
+PKG_VERSION:=2.17
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=@SF/setserial
+PKG_HASH:=7e4487d320ac31558563424189435d396ddf77953bb23111a17a3d1487b5794a
+
+PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
+PKG_LICENSE:=GPL-2.0
+
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/setserial
+  SECTION:=utils
+  CATEGORY:=Utilities
+  URL:=http://setserial.sourceforge.net/
+  TITLE:=Serial port attribute utility
+endef
+
+define Package/setserial/install
+       $(INSTALL_DIR) $(1)/bin
+       $(INSTALL_BIN) $(PKG_BUILD_DIR)/setserial $(1)/bin/
+endef
+
+define Package/setserial/description
+ Setserial is a program which allows you to look at and change various
+ attributes of a serial device, including its port, its IRQ, and other
+ serial port options.
+endef
+
+$(eval $(call BuildPackage,setserial))