4896d9a515
Add ruby-actionpack52 version 5.2.2 package. Action Pack is a framework for handling and responding to web requests. It provides mechanisms for *routing* (mapping request URLs to actions), defining *controllers* that implement actions, and generating responses by rendering *views*, which are templates of various formats. In short, Action Pack provides the view and controller layers in the MVC paradigm. This is for Ruby on Rails 5.2.
25 lines
869 B
Makefile
25 lines
869 B
Makefile
# $NetBSD: Makefile,v 1.1 2019/03/03 14:51:57 taca Exp $
|
|
|
|
DISTNAME= actionpack-${RAILS_VERSION}
|
|
PKGNAME= ${RUBY_PKGPREFIX}-actionpack${RUBY_RAILS}-${RAILS_VERSION}
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.rubyonrails.org/
|
|
COMMENT= Toolkit for building modeling frameworks (part of Rails 5.2)
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${RUBY_ACTIONVIEW_DEPENDS}
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-rack>=2.0:../../www/ruby-rack
|
|
DEPENDS+= ${RUBY_PKGPREFIX}-rack-test>=0.6.3:../../www/ruby-rack-test
|
|
# ruby-actionview already depends them.
|
|
#DEPENDS+= ${RUBY_PKGPREFIX}-rails-dom-testing1>=2.0:../../textproc/ruby-rails-dom-testing
|
|
#DEPENDS+= ${RUBY_PKGPREFIX}-rails-html-sanitizer>=1.0.2:../../www/ruby-rails-html-sanitizer
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
RUBY_RAILS_ACCEPTED= 52
|
|
RUBY_RAILS_STRICT_DEP= yes
|
|
|
|
.include "../../lang/ruby/gem.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|