From: florian Date: Sun, 15 Apr 2007 19:08:54 +0000 (+0000) Subject: Add scponly (#1581) X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=46f0ff99507b1f2c16e507be7ddd93467f9d4e7f;p=packages.git Add scponly (#1581) git-svn-id: svn://svn.openwrt.org/openwrt/packages@6957 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/utils/scponly/Makefile b/utils/scponly/Makefile new file mode 100644 index 000000000..ce6ec0534 --- /dev/null +++ b/utils/scponly/Makefile @@ -0,0 +1,52 @@ +# +# 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:=scponly +PKG_VERSION:=4.6 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz +PKG_SOURCE_URL:=http://sublimation.org/scponly +PKG_MD5SUM:=0425cb868cadd026851238452f1db907 +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +PKG_CONFIGURE_OPTS:= \ + --enable-winscp-compat \ + --enable-scp-compat \ + --disable-rsync-compat \ + --without-sftp-server + + +define Package/scponly + SECTION:=utils + CATEGORY:=Utilities + TITLE=:alternative 'shell' (of sorts) for sysadmins + URL:=http://sublimation.org/scponly +endef + +define Package/scponly/postinst +#!/bin/sh +echo "/usr/bin/scponly" >> $${IPKG_INSTROOT}/etc/shells +endef + +define Build/Compile + $(call Build/Compile/Default) +endef + +define Package/scponly/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/scponly $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,scponly))