blob: 2035a2f95fc88621406c659d7f6b58ec43bcd255 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Created by: Gea-Suan Lin <gslin@gslin.org>
# $FreeBSD$
PORTNAME= closure-compiler
PORTVERSION= 20131014
CATEGORIES= www java
MASTER_SITES= GOOGLE_CODE
DISTNAME= compiler-${PORTVERSION}
MAINTAINER= jlaffaye@FreeBSD.org
COMMENT= Closure Compiler
LICENSE= APACHE20
NO_BUILD= yes
NO_WRKSUBDIR= yes
SUB_FILES= closure-compiler
SUB_LIST= JAVA="${JAVA}"
USE_JAVA= yes
PLIST_DIRSTRY= %%DATADIR%%
PLIST_FILES= bin/closure-compiler \
%%DATADIR%%/compiler.jar
do-install:
${MKDIR} ${STAGEDIR}${DATADIR}/
${INSTALL_DATA} ${WRKSRC}/compiler.jar ${STAGEDIR}${DATADIR}/
${INSTALL_SCRIPT} ${WRKSRC}/closure-compiler ${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>
|