B2 Cloud Storage is a cloud service for storing files in the cloud. Files are available for download at any time, either through the API or through a browser-compatible URL. This package provides Backblaze's officiall command line tool for accessing all of the capabilities of B2 Cloud Storage. WWW: https://www.backblaze.com/b2/docs/quick_command_line.html Submitted by: robak
29 lines
582 B
Makefile
29 lines
582 B
Makefile
# Created by: Bartek Rutkowski <robak@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= b2
|
|
PORTVERSION= 0.2.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://www.backblaze.com/b2/docs/
|
|
DISTNAME= ${PORTNAME}
|
|
EXTRACT_SUFX=
|
|
|
|
MAINTAINER= robak@FreeBSD.org
|
|
COMMENT= Command Line Interface for Backblaze's B2 storage service
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= python:2.6+ shebangfix
|
|
SHEBANG_FILES= b2
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|