554d1e52c1
elf is an ELF header (e_header) statistics tool. It allows you to gather various statistics about a binary's ELF header, unlike other releases (readelf), elf concentrates on the e_header itself. This allows for some more usability in many instances (be it by an end-user or application). Package submitted to pkgsrc-wip by Douwe Kiela with modifications by me.
24 lines
543 B
Makefile
24 lines
543 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2003/05/04 20:38:07 salo Exp $
|
|
#
|
|
|
|
DISTNAME= elf-0.5.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.kerneled.com/projects/elf/
|
|
|
|
MAINTAINER= virtus@wanadoo.nl
|
|
HOMEPAGE= http://www.kerneled.com/projects/elf/
|
|
COMMENT= ELF header analyzer
|
|
|
|
USE_BUILDLINK2= YES
|
|
GNU_CONFIGURE= YES
|
|
|
|
BUILD_DIRS= ${WRKSRC}/src
|
|
ALL_TARGET= elf
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/elf ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/elf.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../devel/ncurses/buildlink2.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|