mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 19:50:31 -04:00
Changes since 4.2.0 - Fix wrong type of tEnableLEDFeedback in IRSend.hpp and IRReceive.hpp. - Add TinyReceiver 2.0. - Fix changing IR_SEND_PIN dynamically for ESP32. - Fix wrong type of tEnableLEDFeedback. - Support for ESP32-C3. Reported by: portscout
34 lines
753 B
Makefile
34 lines
753 B
Makefile
PORTNAME= arduino-irremote
|
|
PORTVERSION= 4.2.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= z3t0
|
|
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>
|