forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
26 lines
642 B
Makefile
26 lines
642 B
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= htmlsplit
|
|
PORTVERSION= 1.0.2
|
|
CATEGORIES= textproc www ruby
|
|
MASTER_SITES= http://www.moonwolf.com/ruby/archive/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Ruby library to split an HTML document into tags and contents
|
|
|
|
USES= zip
|
|
USE_RUBY= yes
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
PLIST_FILES= %%RUBY_SITELIBDIR%%/htmlsplit.rb
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/htmlsplit.rb ${STAGEDIR}${RUBY_SITELIBDIR}/
|
|
|
|
.include <bsd.port.mk>
|