forked from Lainports/freebsd-ports
Samurai is a Ninja-compatible build tool with fewer dependencies than Ninja. Hook it to the framework via a new NINJA_DEFAULT. This also adds %p to NINJA_STATUS to make Ninja or Samurai print the percentage of completed jobs to make it easier to eyeball how much of the build is done. PR: 254678 Exp-run by: antoine
29 lines
755 B
Makefile
29 lines
755 B
Makefile
PORTNAME= fluxengine
|
|
DISTVERSION= 572
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= probono@puredarwin.org
|
|
COMMENT= USB floppy disk interface for reading and writing non-PC disk formats
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.md
|
|
|
|
USES= compiler:gcc-c++11-lib gmake ninja:build pkgconfig sqlite
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= davidgiven
|
|
GH_TAGNAME= 61ff48c
|
|
|
|
PLIST_FILES= bin/brother120tool \
|
|
bin/brother240tool \
|
|
bin/fluxengine
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,^\(export CXX = \).*,\1${CXX},' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/brother120tool ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/brother240tool ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fluxengine ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|