openbsd-ports/textproc/ruby-fast-stemmer/Makefile
jeremy 8e5f3b313e Import ruby-fast-stemmer 1.0.0, dependency of ruby-jekyll
Fast-stemmer is simply a wrapping around multithreaded Porter stemming
algorithm.

This gem adds a String#stem method, and it conflicts with the stemmer
gem.  It's in order of magnitude faster (and uses much less memory) than
the latter.
2010-12-20 18:15:48 +00:00

26 lines
528 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2010/12/20 18:15:48 jeremy Exp $
COMMENT= fast Porter stemmer for ruby
DISTNAME= fast-stemmer-1.0.0
CATEGORIES= textproc
HOMEPAGE= http://github.com/romanbsd/fast-stemmer
# MIT
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= lang/ruby
CONFIGURE_STYLE= ruby gem ext
MODRUBY_REGRESS= rake
REGRESS_DEPENDS= ${FULLPKGNAME}:${BUILD_PKGPATH}
do-regress:
cd ${WRKSRC} && RUBYOPT=-rubygems ${RAKE} test
.include <bsd.port.mk>