mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
S3QL is a file system that stores all its data online using storage services like Google Storage, Amazon S3, or OpenStack. S3QL effectively provides a hard disk of dynamic, infinite capacity that can be accessed from any computer with internet access running Linux, FreeBSD or OS-X. WWW: https://bitbucket.org/nikratio/s3ql PR: 203760 Submitted by: Niklaas Baudet von Gersdorff <stdin@niklaas.eu> (with changes)
30 lines
899 B
Makefile
30 lines
899 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= s3ql
|
|
PORTVERSION= 2.21
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://bitbucket.org/nikratio/s3ql/downloads/
|
|
|
|
MAINTAINER= stdin@niklaas.eu
|
|
COMMENT= File system that stores all its data in the cloud
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}apsw>=3.7:databases/py3-apsw \
|
|
${PYTHON_PKGNAMEPREFIX}defusedxml>=0:devel/py3-defusedxml \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py3-requests \
|
|
${PYTHON_PKGNAMEPREFIX}pycrypto>=0:security/py3-pycrypto \
|
|
${PYTHON_PKGNAMEPREFIX}llfuse>=0:devel/py3-llfuse \
|
|
${PYTHON_PKGNAMEPREFIX}dugong>=0:net/py-dugong \
|
|
psmisc>=0:sysutils/psmisc \
|
|
ca_root_nss>=0:security/ca_root_nss
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= localbase python:3.3+ sqlite tar:bz2
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/s3ql/deltadump.so
|
|
|
|
.include <bsd.port.mk>
|