aa6ea9c32d
KirbyBase is a small, plain-text, DBMS written in Ruby. It can be used in an embedded or client/server configuration. It aims to be as "Ruby-ish" as possible. For example, queries are specified using Ruby code blocks, rather than SQL strings. From Clint Pachl <pachl@ecentryx.com>, thanks. And a few tweaks from me. Okay bernd@.
32 lines
619 B
Makefile
32 lines
619 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/01/06 13:27:50 pirofti Exp $
|
|
|
|
COMMENT = small, plain-text, DBMS written in Ruby
|
|
|
|
DISTNAME = KirbyBase-2.6
|
|
PKGNAME = ruby-${DISTNAME:L}
|
|
CATEGORIES = databases
|
|
|
|
HOMEPAGE = http://www.netpromi.com/kirbybase_ruby.html
|
|
|
|
MAINTAINER = Clint Pachl <pachl@ecentryx.com>
|
|
|
|
# Ruby
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
|
|
MASTER_SITES = ${MASTER_SITE_RUBYFORGE:=kirbybase/}
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
PKG_ARCH = *
|
|
|
|
do-regress:
|
|
@cd ${WRKBUILD}/test && ${RUBY} ts_local.rb
|
|
|
|
.include <bsd.port.mk>
|