Add mvprelay (#1262)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@7591 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
20e82eaa38
commit
07bd1bd060
46
net/mvprelay/Makefile
Normal file
46
net/mvprelay/Makefile
Normal file
@ -0,0 +1,46 @@
|
||||
#
|
||||
# Copyright (C) 2007 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
# $Id: $
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mvprelay
|
||||
PKG_VERSION:=0.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=@openwrt/
|
||||
PKG_MD5SUM:=189fb792470c966834d5204705ebee83
|
||||
PKG_CAT:=bzcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/mvprelay
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=relays requests from the MVP
|
||||
DESCRIPTION:=\
|
||||
Relays requests from the MediaMVP to the TFTP server
|
||||
URL:=http://downloads.openwrt.org/sources/
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(TARGET_CC) $(TARGET_CFLAGS) $(PKG_BUILD_DIR)/$(PKG_NAME).c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
|
||||
endef
|
||||
|
||||
define Package/mvprelay/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,mvprelay))
|
Loading…
x
Reference in New Issue
Block a user