mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
dbbfc7889a
- If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight
30 lines
782 B
Makefile
30 lines
782 B
Makefile
# Created by: Jason Bacon <bacon11@tds.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libnxt
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= bacon4000@gmail.com
|
|
COMMENT= Lego NXT library
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
|
|
SUB_FILES= pkg-message
|
|
USES= python:build scons shebangfix
|
|
USE_LDCONFIG= yes
|
|
SHEBANG_FILES= make_flash_header.py
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/libnxt
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fwflash ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fwexec ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/libnxt.a ${STAGEDIR}${PREFIX}/lib
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/libnxt
|
|
.for file in ${WRKSRC}/*.h
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include/libnxt
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|