ports/devel/arduino-irremote/Makefile
Craig Leres 5e5e7ccbcc devel/arduino-irremote: Update to 4.4.1
Changes since 4.4.0:

 - Support for ESP 3.0 by akellai.

 - restartTimer() now uses variable sMicrosAtLastStopTimer to keep
   track of uncounted ticks between stopTimer() and restartTimer().

 - Removed functions addTicksToInternalTickCounter() and
   addMicrosToInternalTickCounter(), which were added in 4.1.0.

 - Version 2.2.0 of TinyIR with new TinyReceiverDecode() function
   to be used as drop in for IrReceiver.decode().

 - Support of RC6A.

Also update GH_ACCOUNT from z3t0 to Arduino-IRremote.

Reported by:	portscout
2024-09-18 10:24:29 -07:00

34 lines
765 B
Makefile

PORTNAME= arduino-irremote
PORTVERSION= 4.4.1
DISTVERSIONPREFIX= v
CATEGORIES= devel
MAINTAINER= leres@FreeBSD.org
COMMENT= Multi-protocol infrared remote library for the Arduino
WWW= https://arduino-irremote.github.io/Arduino-IRremote/
LICENSE= MIT
USES= dos2unix
USE_GITHUB= yes
GH_ACCOUNT= Arduino-IRremote
GH_PROJECT= Arduino-IRremote
PORTSCOUT= limit:^[0-9]
NO_BUILD= yes
RELPATH= arduino/libraries/IRremote
DATADIR= ${PREFIX}/${RELPATH}
PORTDATA= *
PORTEXAMPLES= *
OPTIONS_DEFINE= EXAMPLES
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/${RELPATH}
cd ${WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${RELPATH}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>