32 lines
663 B
Makefile
32 lines
663 B
Makefile
# $OpenBSD: Makefile,v 1.9 2013/03/11 02:52:08 espie Exp $
|
|
|
|
COMMENT = client library for the Redis key-value store
|
|
|
|
VERSION = 3.0.2
|
|
DISTNAME = redis-${VERSION}
|
|
CATEGORIES = databases
|
|
|
|
HOMEPAGE = http://redis-rb.keyvalue.org/
|
|
|
|
MAINTAINER = David Coppa <dcoppa@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
MODRUBY_TEST = rake
|
|
|
|
TEST_DEPENDS = databases/redis
|
|
|
|
# Be sure to have a redis server running with the command:
|
|
# cd $(make show=WRKBUILD) && sudo redis-server ./test/test.conf
|
|
TEST_IS_INTERACTIVE =Yes
|
|
|
|
post-install:
|
|
@find ${PREFIX}/${GEM_LIB}/ -name '.git*' -print0 | xargs -0 rm
|
|
|
|
.include <bsd.port.mk>
|