openbsd-ports/databases/ruby-sequel/Makefile
bernd 72cd0cca6b Initial import of ruby-sequel-2.10.0.
Sequel is an ORM framework for Ruby. Sequel provides thread safety,
connection pooling, and a concise DSL for constructing queries and
table schemas.

Sequel makes it easy to deal with multiple records without having
to break your teeth on SQL.

Maintained by upstream author Jeremy Evans. Thank you!
2009-02-03 21:26:02 +00:00

34 lines
689 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2009/02/03 21:26:02 bernd Exp $
COMMENT = lightweight ORM library for Ruby
DISTNAME = sequel-2.10.0
PKGNAME = ruby-${DISTNAME}
CATEGORIES = databases
HOMEPAGE = http://sequel.rubyforge.org/
MAINTAINER = Jeremy Evans <openbsd@jeremyevans.net>
# MIT
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM = Yes
PERMIT_DISTFILES_FTP = Yes
MASTER_SITES = ${MASTER_SITE_RUBYFORGE:=sequel/}
MODULES = lang/ruby
CONFIGURE_STYLE = ruby gem
PKG_ARCH = *
REGRESS_DEPENDS = ::devel/ruby-rake \
::databases/ruby-sqlite3
do-regress:
@cd ${WRKBUILD} && ${LOCALBASE}/bin/rake spec spec_sqlite integration
.include <bsd.port.mk>