svn commit: r326903 - in head/net: . dropbox-uploader
Nicola Vitale
nivit at FreeBSD.org
Tue Sep 10 14:05:24 UTC 2013
Author: nivit
Date: Tue Sep 10 14:05:23 2013
New Revision: 326903
URL: http://svnweb.freebsd.org/changeset/ports/326903
Log:
Dropbox Uploader is a BASH script which can be used to upload, download, delete,
list files (and more!) from Dropbox, an online file sharing, synchronization and
backup service.
WWW: https://github.com/andreafabrizi/Dropbox-Uploader
Added:
head/net/dropbox-uploader/
head/net/dropbox-uploader/Makefile (contents, props changed)
head/net/dropbox-uploader/distinfo (contents, props changed)
head/net/dropbox-uploader/pkg-descr (contents, props changed)
Modified:
head/net/Makefile
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Tue Sep 10 13:59:30 2013 (r326902)
+++ head/net/Makefile Tue Sep 10 14:05:23 2013 (r326903)
@@ -116,6 +116,7 @@
SUBDIR += dosdetector
SUBDIR += drawterm
SUBDIR += dropbox-api-command
+ SUBDIR += dropbox-uploader
SUBDIR += dtcp
SUBDIR += dtcpclient
SUBDIR += e169-stats
Added: head/net/dropbox-uploader/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/dropbox-uploader/Makefile Tue Sep 10 14:05:23 2013 (r326903)
@@ -0,0 +1,36 @@
+# Created by: Nicola Vitale <nivit at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= dropbox-uploader
+PORTVERSION= 0.12
+#PORTREVISION= 0
+CATEGORIES= net
+MASTER_SITES= http://nivit.altervista.org/FreeBSD/ports/distfiles/
+
+MAINTAINER= nivit at FreeBSD.org
+COMMENT= BASH script for the Dropbox backup service
+
+LICENSE= GPLv3
+
+RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \
+ curl:${PORTSDIR}/ftp/curl \
+ greadlink:${PORTSDIR}/sysutils/coreutils
+
+GH_ACCOUNT= andreafabrizi
+GH_COMMIT= 3e5aef0
+GH_PROJECT= Dropbox-Uploader
+GH_TAGNAME= ${GH_COMMIT}
+
+NO_BUILD= yes
+
+PLIST_FILES= bin/dropShell.sh bin/dropbox_uploader.sh
+
+USE_GITHUB= yes
+
+post-patch:
+ ${REINPLACE_CMD} -E -e 's,("darwin9"),\1 -o "$${OSTYPE:0:7}" == "freebsd" ,1' -i.bak ${WRKSRC}/dropShell.sh
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/*.sh ${PREFIX}/bin/
+
+.include <bsd.port.mk>
Added: head/net/dropbox-uploader/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/dropbox-uploader/distinfo Tue Sep 10 14:05:23 2013 (r326903)
@@ -0,0 +1,2 @@
+SHA256 (dropbox-uploader-0.12.tar.gz) = 4afd856bd2ad2038ddccf5684adfe48089745dba555402cd17d2f6dc05e1544e
+SIZE (dropbox-uploader-0.12.tar.gz) = 25341
Added: head/net/dropbox-uploader/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/dropbox-uploader/pkg-descr Tue Sep 10 14:05:23 2013 (r326903)
@@ -0,0 +1,5 @@
+Dropbox Uploader is a BASH script which can be used to upload, download, delete,
+list files (and more!) from Dropbox, an online file sharing, synchronization and
+backup service.
+
+WWW: https://github.com/andreafabrizi/Dropbox-Uploader
More information about the svn-ports-head
mailing list