Makefile (793B)
1 # 2 # Copyright (C) 2014 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 9 PKG_NAME:=remserial 10 PKG_VERSION:=1.4 11 PKG_RELEASE:=1 12 PKG_LICENSE:=GPL-2.0+ 13 14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz 15 PKG_SOURCE_URL:=http://lpccomp.bc.ca/remserial/ 16 PKG_MD5SUM:=b19b57fd118329c5ea3aaf9887f946a6 17 18 PKG_MAINTAINER:=Nuno Goncalves <nunojpg@gmail.com> 19 20 include $(INCLUDE_DIR)/package.mk 21 22 define Package/remserial 23 SECTION:=net 24 CATEGORY:=Network 25 TITLE:=Bridge TCP/IP port with a device 26 URL:=http://lpccomp.bc.ca/remserial/ 27 endef 28 29 define Package/remserial/install 30 $(INSTALL_DIR) $(1)/usr/bin 31 $(INSTALL_BIN) $(PKG_BUILD_DIR)/remserial $(1)/usr/bin/ 32 endef 33 34 $(eval $(call BuildPackage,remserial))