4803bb2cba
Net::SFTP is a pure-Perl implementation of the Secure File Transfer Protocol (SFTP)--file transfer built on top of the SSH protocol. Net::SFTP uses Net::SSH::Perl to build a secure, encrypted tunnel through which files can be transferred and managed. It provides a subset of the commands listed in the SSH File Transfer Protocol IETF draft.
27 lines
538 B
Makefile
27 lines
538 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/02/23 20:16:09 sturm Exp $
|
|
|
|
COMMENT= "client for the Secure File Transfer Protocol"
|
|
|
|
DISTNAME= Net-SFTP-0.09
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net security perl5
|
|
|
|
MAINTAINER= Nikolay Sturm <sturm@openbsd.org>
|
|
|
|
# GPL/Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::net/p5-Net-SSH-Perl
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|