From 64874e93a4f5a6c7a8113f5cf9a57753f6bd7453 Mon Sep 17 00:00:00 2001 From: rpaulo Date: Fri, 5 Dec 2014 18:07:14 +0000 Subject: Add a new port: devel/libpru. libpru is a library to interface with Programmable Realtime Units on FreeBSD. Currently only the Texas Instruments PRUs are supported. Those can be found in the AM18XX and AM33XX (BeagleBone Black) SoCs. Differential Revision: https://reviews.freebsd.org/D1266 Reviewed by: bapt Approved by: bapt --- devel/libpru/Makefile | 17 +++++++++++++++++ devel/libpru/distinfo | 2 ++ devel/libpru/pkg-descr | 6 ++++++ devel/libpru/pkg-plist | 3 +++ 4 files changed, 28 insertions(+) create mode 100644 devel/libpru/Makefile create mode 100644 devel/libpru/distinfo create mode 100644 devel/libpru/pkg-descr create mode 100644 devel/libpru/pkg-plist (limited to 'devel/libpru') diff --git a/devel/libpru/Makefile b/devel/libpru/Makefile new file mode 100644 index 000000000000..ecc4d59937da --- /dev/null +++ b/devel/libpru/Makefile @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= libpru +PORTVERSION= 0.1 +CATEGORIES= devel +MASTER_SITES= https://bitbucket.org/rpaulo/libpru/get/ +#DISTNAME= libpru-${PORTVERSION} +LICENSE= BSD2CLAUSE + +MAINTAINER= rpaulo@FreeBSD.org +COMMENT= Library to interface with PRUs + +USES= cmake + +WRKSRC= ${WRKDIR}/rpaulo-libpru-e1aae0486927 + +.include diff --git a/devel/libpru/distinfo b/devel/libpru/distinfo new file mode 100644 index 000000000000..08ececf11d69 --- /dev/null +++ b/devel/libpru/distinfo @@ -0,0 +1,2 @@ +SHA256 (libpru-0.1.tar.gz) = d64d4a27c7931b7428944367ea12e492e7cb5fcef5b52bdd154ee504840fbdd5 +SIZE (libpru-0.1.tar.gz) = 6711 diff --git a/devel/libpru/pkg-descr b/devel/libpru/pkg-descr new file mode 100644 index 000000000000..91b656f48eaa --- /dev/null +++ b/devel/libpru/pkg-descr @@ -0,0 +1,6 @@ +libpru is a library to interface with Programmable Realtime Units on +FreeBSD. Currently only the Texas Instruments PRUs are +supported. Those can be found in the AM18XX and AM33XX (BeagleBone +Black) SoCs. + +WWW: https://bitbucket.org/rpaulo/libpru diff --git a/devel/libpru/pkg-plist b/devel/libpru/pkg-plist new file mode 100644 index 000000000000..694b71b576f6 --- /dev/null +++ b/devel/libpru/pkg-plist @@ -0,0 +1,3 @@ +include/libpru.h +lib/libpru.so.1 +lib/libpru.so -- cgit