mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
b9b6b89673
Fix build with clang
28 lines
592 B
Makefile
28 lines
592 B
Makefile
# New ports collection makefile for: hexcompare
|
|
# Date created: 2010-07-20
|
|
# Whom: Steven Kreuzer <skreuzer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hexcompare
|
|
PORTVERSION= 1.0.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20v${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-102
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Compare and identify differences between two binary files
|
|
|
|
LICENSE= GPLv3
|
|
|
|
PLIST_FILES= bin/hexcompare
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|