1a2fe7a2a68bc1da5fa194bdb1e0164e66aed8ea
[openwrt/svn-archive/archive.git] / utils / setserial / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=setserial
12 PKG_VERSION:=2.17
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/setserial
17 PKG_MD5SUM:=c4867d72c41564318e0107745eb7a0f2
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/setserial
24 SECTION:=utils
25 CATEGORY:=Utilities
26 TITLE:=Serial port configuration utility
27 URL:=http://setserial.sourceforge.net/
28 endef
29
30 define Package/setserial/description
31 setserial is a program designed to set and/or report the
32 configuration information associated with a serial port. This
33 information includes what I/O port and IRQ a particular
34 serial port is using, and whether or not the break key should
35 be interpreted as the Secure Attention Key, and so on.
36 endef
37
38 # uses GNU configure
39
40 define Build/Compile
41 $(MAKE) -C $(PKG_BUILD_DIR) \
42 all
43 endef
44
45 define Package/setserial/install
46 $(INSTALL_DIR) $(1)/usr/sbin
47 $(INSTALL_BIN) $(PKG_BUILD_DIR)/setserial $(1)/usr/sbin/
48 $(INSTALL_DIR) $(1)/etc/init.d
49 $(INSTALL_BIN) ./files/serial.init $(1)/etc/init.d/setserial
50 endef
51
52 $(eval $(call BuildPackage,setserial))