72bdd66154
Rails is a web-application framework for the MVC pattern that includes both a template engine, controller framework, and object-relational mapping package. Everything needed to develop web-apps that can run on CGI, FastCGI, and mod_ruby Being a full-stack framework means that all layers are built to work seamlessly together. That way you Don't Repeat Yourself (DRY) and you can use a single language from top to bottom. Everything from templates to control flow to business logic is written in Ruby - The language of love for industry heavy-weights. from msf
29 lines
601 B
Makefile
29 lines
601 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/06/12 20:20:09 sturm Exp $
|
|
|
|
COMMENT= "ruby MVC web application framework"
|
|
|
|
DISTNAME= rails-1.1.2
|
|
PKGNAME= ruby-${DISTNAME}
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
|
|
|
|
# MIT License
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://rubyforge.org/frs/download.php/9684/
|
|
|
|
MODULES= lang/ruby
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::devel/ruby-rake \
|
|
::mail/ruby-actionmailer \
|
|
::www/ruby-actionwebservice
|
|
|
|
CONFIGURE_STYLE=ruby gem
|
|
|
|
.include <bsd.port.mk>
|