1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00
freebsd-ports/devel/hexd/Makefile
Mark Linimon 9fa05cbab2 Adjust USES to fix building on gcc-based archs (in particular, powerpc64).
On the clang architectures, these changes have no effect: the baser
compiler already includes the needed features.

While here, remove now-redundant CXXFLAGS statements and pet portlint
(no other content change).

Tested on both powerpc64 and amd64.

Approved by:	portmgr (tier-2 blanket)
2018-06-02 19:40:59 +00:00

26 lines
484 B
Makefile

# $FreeBSD$
PORTNAME= hexd
DISTVERSIONPREFIX=v
DISTVERSION= 1.0.0
CATEGORIES= devel
MAINTAINER= mail@dbalan.in
COMMENT= Colourful, human-friendly hexdump tool
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= compiler:c++11-lang gmake
USE_GITHUB= yes
GH_ACCOUNT= FireyFly
PLIST_FILES= bin/hexd \
man/man1/hexd.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/hexd ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/hexd.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>