240754c507
Haml and Sass are templating engines for the two most common types of documents on the web: HTML and CSS, respectively. They are designed to make it both easier and more pleasant to code HTML and CSS documents, by eliminating redundancy, reflecting the underlying structure that the document represents, and providing elegant, easily understandable, and powerful syntax.
34 lines
709 B
Makefile
34 lines
709 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/19 19:11:21 bernd Exp $
|
|
|
|
COMMENT= HTML Abstraction Markup Language for Ruby
|
|
|
|
DISTNAME= haml-1.8.2
|
|
PKGNAME= ruby-${DISTNAME}
|
|
CATEGORIES= textproc
|
|
|
|
HOMEPAGE= http://haml.hamptoncatlin.com/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_RUBYFORGE:=haml/}
|
|
|
|
MODULES= lang/ruby
|
|
|
|
CONFIGURE_STYLE= ruby gem
|
|
|
|
REGRESS_DEPENDS= ::devel/ruby-activesupport \
|
|
::devel/ruby-actionpack \
|
|
::textproc/ruby-redcloth \
|
|
::textproc/ruby-bluecloth \
|
|
::devel/ruby-rake \
|
|
::textproc/ruby-hpricot
|
|
|
|
do-regress:
|
|
@cd ${WRKBUILD} && ${LOCALBASE}/bin/rake test
|
|
|
|
.include <bsd.port.mk>
|