diff options
Diffstat (limited to 'news/cleanscore/Makefile')
-rw-r--r-- | news/cleanscore/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/news/cleanscore/Makefile b/news/cleanscore/Makefile new file mode 100644 index 0000000..136a14e --- /dev/null +++ b/news/cleanscore/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: cleanscore +# Date created: 10 April 2002 +# Whom: Oliver Braun <obraun@informatik.unibw-muenchen.de> +# +# $FreeBSD$ +# + +PORTNAME= cleanscore +PORTVERSION= 0.9.8.1 +CATEGORIES= news +MASTER_SITES= http://slrn.sourceforge.net/cleanscore/ + +MAINTAINER= obraun@informatik.unibw-muenchen.de + +USE_PERL5= yes +NO_BUILD= yes + +post-patch: + @${PERL} -pi -e 's|^use warnings|#use warnings|g ; \ + s|^our |my |g' ${WRKSRC}/cleanscore + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/cleanscore ${PREFIX}/bin +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include <bsd.port.mk> |