Net::SCP is a pure-Ruby implementation of the SCP protocol. This operates over SSH (and requires the Net::SSH library), and allows files and directory trees to copied to and from a remote server.
27 lines
545 B
Makefile
27 lines
545 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/05/09 18:52:19 bernd Exp $
|
|
|
|
COMMENT = pure-Ruby implementation of the SCP protocol
|
|
|
|
DISTNAME = net-scp-1.0.0
|
|
PKGNAME = ruby-${DISTNAME}
|
|
CATEGORIES = lang/ruby net
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_RUBYFORGE:=net-ssh/}
|
|
|
|
MODULES = lang/ruby
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS = :ruby-net-ssh->=2.0.0:net/ruby-net-ssh
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
PKG_ARCH = *
|
|
|
|
.include <bsd.port.mk>
|