forked from Lainports/freebsd-ports
This version brings a better debugging experience in prudbg. Differential Revision: https://reviews.freebsd.org/D2000 Reviewed by: bapt Approved by: bapt
27 lines
469 B
Makefile
27 lines
469 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libpru
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://bitbucket.org/rpaulo/libpru/get/
|
|
|
|
MAINTAINER= rpaulo@FreeBSD.org
|
|
COMMENT= Library to interface with PRUs
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} != FreeBSD
|
|
IGNORE= Only supported on FreeBSD
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 1000510
|
|
IGNORE= Only supported on FreeBSD 10+
|
|
.endif
|
|
|
|
USES= cmake
|
|
|
|
WRKSRC= ${WRKDIR}/rpaulo-libpru-c93bf0890c53
|
|
|
|
.include <bsd.port.mk>
|