mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
86b2c5122a
A big Thank You to the original contributors of these ports: * Alexander Logvinov <ports@logvinov.com> * Alexey Dokuchaev <danfe@FreeBSD.org> * Alexey V. Degtyarev * Andreas Kohn <andreas@syndrom23.de> * Andrew Shevtsov <nyxo@dnuc.polyn.kiae.su> * Andrey Zakhvatov <andy@FreeBSD.org> * Andy Clark <andrewclarkii@gmail.com> * Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) * Bill Fumerola <billf@chc-chimes.com> * Brad Davis <brd@FreeBSD.org> * Bruce A. Mah <bmah@FreeBSD.org> * Chao Shin <quakelee@cn.freebsd.org> * Danilo Egea Gondolfo <danilo@FreeBSD.org> * David O'Brien (obrien@FreeBSD.org) * David O'Brien (obrien@NUXI.com) * Dima Sivachenko <dima@chg.ru> * Gabriel M. Dutra <0xdutra@gmail.com> * Gea-Suan Lin <gslin@ccca.nctu.edu.tw> * Gea-Suan Lin <gslin@gslin.org> * Hannes Hauswedell <h2+fbsdports@fsfe.org> * Johannes Dieterich <dieterich@ogolem.org> * Johannes Dieterich <jmd@FreeBSD.org> * Joseph Koshy <jkoshy@FreeBSD.org> * Kris Moore <kmoore@FreeBSD.org> * Lars Eggert <lars@eggert.org> * Mark Pulford <mark@kyne.com.au> * Matthias Fechner <mfechner@FreeBSD.org> * NAKAJI Hiroyuki <nakaji@jp.freebsd.org> * NAKATA Maho <maho@FreeBSD.org> * Oliver Lehmann <oliver@FreeBSD.org> * Pete Fritchman <petef@databits.net> * Po-Chuan Hsieh <sunpoet@FreeBSD.org> * Radim Kolar * Radim Kolar <hsn@sendmail.cz> * Roman Bogorodskiy <bogorodskiy@inbox.ru> * Scott Flatman <sf@dsinw.com> * Sergey A. Osokin <osa@FreeBSD.org> * Sergey Kandaurov <pluknet@gmail.com> * Sergey Skvortsov <skv@protey.ru> * Slava Shwartsman <slavash@FreeBSD.org> * Stephen Montgomery-Smith <stephen@math.missouri.edu> * Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> * Thomas Dreibholz <dreibh@iem.uni-due.de> * Tom Judge <tom@tomjudge.com> * Veniamin Gvozdikov <vg@FreeBSD.org> * Vsevolod Stakhov <vsevolod@FreeBSD.org> * Will Andrews <andrews@technologist.com> * Yen-Ming Lee <leeym@FreeBSD.org> * Ying-Chieh Liao <ijliao@FreeBSD.org> * arved * asami * dikshie <dikshie@lapi.itb.ac.id> * gnn * ijliao * janos.mohacsi@bsd.hu * jesper@jdn.dk * jmz * koshy * luigi@FreeBSD.org * mharo@FreeBSD.org * mich@freebsdcluster.org * mr * se * shalunov * thierry@pompo.net * trasz <trasz@pin.if.uz.zgora.pl> * uminac With hat: portmgr
38 lines
1007 B
Makefile
38 lines
1007 B
Makefile
PORTNAME= typometer
|
|
PORTVERSION= 1.0.1
|
|
DISTVERSIONSUFFIX= -bin
|
|
CATEGORIES= benchmarks java
|
|
# Not USE_GITHUB because we want to grab the binary release (it's Java)
|
|
MASTER_SITES= https://github.com/pavelfatin/${PORTNAME}/releases/download/v${PORTVERSION}/
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Text/code editor typing latency analyzer
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= zip
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.8+
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} bin/${PORTNAME}-${PORTVERSION}.jar
|
|
PORTDOCS= README.html
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-${PORTVERSION}.jar \
|
|
${STAGEDIR}${PREFIX}/bin
|
|
${PRINTF} "#!/bin/sh\n\n%s %s\n" "exec ${JAVA} -jar" \
|
|
"${PREFIX}/bin/${PORTNAME}-${PORTVERSION}.jar" \
|
|
> ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|