e22dfb35a5
This is a small program that displays SPI sniffer data from the Bus Pirate. It uses the binary mode SPI sniffer access, so it has a speed advantage over the terminal mode display. The computer takes the burden of converting raw byte values to HEX output. ok sthen@
30 lines
718 B
Makefile
30 lines
718 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/06/21 19:14:59 jasper Exp $
|
|
|
|
COMMENT= Bus Pirate binary mode SPI sniffer
|
|
|
|
# svn rev 598
|
|
DISTNAME= spisniffer-0.2
|
|
CATEGORIES= comms devel
|
|
|
|
HOMEPAGE= http://dangerousprototypes.com/docs/Bus_Pirate_binary_SPI_sniffer_utility
|
|
|
|
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>
|
|
|
|
# CC0 1.0 Universal (CC0 1.0) (Public Domain)
|
|
# http://creativecommons.org/publicdomain/zero/1.0/
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://distfiles.nl/
|
|
|
|
WANTLIB= c
|
|
|
|
MAKE_FLAGS= CC="${CC}" STD_CFLAGS="${CFLAGS}"
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/spisniffer ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|