mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-09 02:22:18 +00:00
fe47b37715
This is a library used to control Pololu AVR-based robots such as the Pololu 3pi (used for introductory programming education at Memorial University of Newfoundland and, I believe, other places too). Approved by: mat Differential Revision: https://reviews.freebsd.org/D2622
26 lines
527 B
Makefile
26 lines
527 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libpololu-avr
|
|
PORTVERSION= 140513
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.pololu.com/file/download/
|
|
EXTRACT_SUFX= .zip?file_id=0J757
|
|
|
|
MAINTAINER= jonathan@FreeBSD.org
|
|
COMMENT= Support libraries for Pololu robots
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= avr-gcc:${PORTSDIR}/devel/avr-gcc \
|
|
${LOCALBASE}/avr/lib/libc.a:${PORTSDIR}/devel/avr-libc
|
|
|
|
USES= gmake zip
|
|
|
|
PREFIX= ${LOCALBASE}/avr
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
MAKE_ENV= LIB=${STAGEDIR}${PREFIX}/lib
|
|
ALL_TARGET= library_files
|
|
|
|
.include <bsd.port.mk>
|