blob: 45714b69c50c995c842bad7ec8ab4e8e1f39c933 (
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
31
32
33
|
# Created by: Craig Leres <leres@FreeBSD.org>
PORTNAME= arduino-irremote
PORTVERSION= 2.8.1
CATEGORIES= devel
MAINTAINER= leres@FreeBSD.org
COMMENT= Multi-protocol infrared remote library for the Arduino
LICENSE= MIT
USES= dos2unix
USE_GITHUB= yes
GH_ACCOUNT= z3t0
GH_PROJECT= Arduino-IRremote
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>
|