29 lines
646 B
Makefile
29 lines
646 B
Makefile
# $OpenBSD: Makefile,v 1.16 2012/10/31 22:04:42 jeremy Exp $
|
|
|
|
COMMENT = Ruby binding for the bcrypt() password hashing algorithm
|
|
|
|
VERSION = 3.0.1
|
|
DISTNAME = bcrypt-ruby-${VERSION}
|
|
PKGNAME = bcrypt-${VERSION}
|
|
CATEGORIES = security
|
|
|
|
MAINTAINER = Jeremy Evans <jeremy@openbsd.org>
|
|
|
|
HOMEPAGE = http://bcrypt-ruby.rubyforge.org/
|
|
|
|
# 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
|
|
|
|
REGRESS_DEPENDS = ${FULLPKGNAME}:${BUILD_PKGPATH} \
|
|
devel/ruby-rake-compiler,${MODRUBY_FLAVOR}
|
|
MODRUBY_REGRESS = rake rspec2
|
|
|
|
.include <bsd.port.mk>
|