mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
35764879e6
- ftpcopy is a simply FTP client written to copy files or directories (recursively) from a FTP server. - ftpls is a FTP client which generates directory listings, either in plain text or HTML.
22 lines
468 B
Makefile
22 lines
468 B
Makefile
# New ports collection makefile for: ftpcopy
|
|
# Date created: 5 June 2000
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ftpcopy
|
|
PORTVERSION= 0.2.2
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= http://www.ohse.de/uwe/releases/
|
|
|
|
MAINTAINER= sobomax@FreeBSD.org
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/share/ftpcopy
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_PROGRAM} ftpcopy ftpls ${PREFIX}/bin && \
|
|
${INSTALL_DATA} NEWS README ${PREFIX}/share/ftpcopy
|
|
|
|
.include <bsd.port.mk>
|