c1873da2ce
git-svn-id: svn://svn.openwrt.org/openwrt/packages@4616 3c298f89-4303-0410-b956-a3cf2f4a3e73
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# Copyright (C) 2006 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:=autossh
|
|
PKG_VERSION:=1.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=http://www.harding.motd.ca/autossh
|
|
PKG_MD5SUM:=0e7ec62eeca5d1b197f3ef2d0f0d417f
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/autossh
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+openssh-client
|
|
TITLE:=Autossh client
|
|
DESCRIPTION:=Autossh client
|
|
URL:=http://www.harding.motd.ca/autossh
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default, -f Makefile.linux \
|
|
CFLAGS="$(TARGET_CFLAGS) -Wall -D\"SSH_PATH=\\\"\$$$$(SSH)\\\"\" -D\"VER=\\\"\$$$$(VER)\\\"\"" \
|
|
all \
|
|
)
|
|
endef
|
|
|
|
define Package/autossh/install
|
|
install -d -m0755 $(1)/usr/sbin
|
|
install -m0755 $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,autossh))
|