dbe18b2a96
Resque is a Redis-backed Ruby library for creating background jobs, placing those jobs on multiple queues, and processing them later. Background jobs can be any Ruby class or module that responds to perform. Your existing classes can easily be converted to background jobs or you can create new classes specifically to do work. Or, you can do both. [...] ok jeremy@
27 lines
649 B
Makefile
27 lines
649 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/10/31 22:12:20 jasper Exp $
|
|
|
|
COMMENT= Redis-backed library to create jobs and place them on queues
|
|
|
|
DISTNAME= resque-1.23.0
|
|
CATEGORIES= databases www
|
|
|
|
HOMEPAGE= https://github.com/defunkt/resque
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= lang/ruby
|
|
|
|
CONFIGURE_STYLE= ruby gem
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= converters/ruby-multi_json,${MODRUBY_FLAVOR} \
|
|
databases/ruby-redis-namespace,${MODRUBY_FLAVOR} \
|
|
www/ruby-sinatra,${MODRUBY_FLAVOR} \
|
|
www/ruby-vegas,${MODRUBY_FLAVOR}
|
|
|
|
.include <bsd.port.mk>
|