1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/databases/R-cran-sqldf/Makefile
Steven Kreuzer 1d42494e45 sqldf is an R package for runing SQL statements on R data frames, optimized
for convenience. The user simply specifies an SQL statement in R using data
frame names in place of table names and a database with appropriate table
layouts/schema is automatically created, the data frames are automatically
loaded into the database, the specified SQL statement is performed, the
result is read back into R and the database is deleted all automatically
behind the scenes making the database's existence transparent to the user
who only specifies the SQL statement.

WWW:    https://code.google.com/p/sqldf/
2012-08-22 18:09:57 +00:00

30 lines
802 B
Makefile

# New ports collection makefile for: R-cran-sqldf
# Date created: 2012-08-21
# Whom: Steven Kreuzer <skreuzer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= sqldf
DISTVERSION= 0.4-6.4
CATEGORIES= databases
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= SQL select on R data frames
LICENSE= GPLv2
BUILD_DEPENDS= R-cran-proto>=0.3.9.2_6:${PORTSDIR}/devel/R-cran-proto \
R-cran-chron>=2.3.42:${PORTSDIR}/devel/R-cran-chron \
R-cran-gsubfn>=0.6.4:${PORTSDIR}/devel/R-cran-gsubfn \
R-cran-DBI>=0.2.5_6:${PORTSDIR}/databases/R-cran-DBI \
R-cran-RSQLite>=0.11.1:${PORTSDIR}/databases/R-cran-RSQLite \
R-cran-RSQLite.extfuns>=0.0.1:${PORTSDIR}/databases/R-cran-RSQLite.extfuns
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
.include <bsd.port.mk>