1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/science/sigrok-firmware-fx2lafw/Makefile
John Marino ab7f54db43 Add new port: science/sigrok-firmware-fx2lafw
PR:		188809
Submitted by:	uffer

      ===============================================================

The sigrok project aims at creating a portable, cross-platform,
Free/Libre/Open-Source signal analysis software suite that supports
various device types, such as logic analyzers, MSOs, oscilloscopes,
multimeters, LCR meters, sound level meters, thermometers, hygrometers,
anemometers, light meters, DAQs, dataloggers, function generators,
spectrum analyzers, power supplies, GPIB interfaces, and more.
2014-08-03 22:24:50 +00:00

42 lines
1.1 KiB
Makefile

# Created by: Uffe Jakobsen <uffe@uffe.org>
# $FreeBSD$
PORTNAME= firmware
PORTVERSION= 0.1.2
CATEGORIES= science
MASTER_SITES= http://sigrok.org/download/binary/${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}/
PKGNAMEPREFIX= sigrok-
PKGNAMESUFFIX= -fx2lafw
DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-bin-${PORTVERSION}
MAINTAINER= uffe@uffe.org
COMMENT= Cypress FX2 firmware for hardware logic analyzers
LICENSE= GPLv2
NO_BUILD= yes
FW_FILES= fx2lafw-braintechnology-usb-lps.fw \
fx2lafw-cwav-usbeeax.fw \
fx2lafw-cwav-usbeedx.fw \
fx2lafw-cwav-usbeesx.fw \
fx2lafw-cypress-fx2.fw \
fx2lafw-saleae-logic.fw
PORTDOCS= README NEWS
PLIST_FILES= ${FW_FILES:S,^,share/sigrok-firmware/,}
PLIST_DIRSTRY= share/sigrok-firmware
do-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docfile in README NEWS
${INSTALL_MAN} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
.endfor
@${MKDIR} ${STAGEDIR}${PREFIX}/share/sigrok-firmware
.for fwfile in ${FW_FILES}
${INSTALL_DATA} ${WRKSRC}/${fwfile} \
${STAGEDIR}${PREFIX}/share/sigrok-firmware/
.endfor
.include <bsd.port.mk>