d3a73a9562
udis86 is an easy-to-use minimalistic disassembler library (libudis86) for the x86 and x86-64 class of instruction set architectures. The primary intent of the design and development of udis86 is to aid software development projects that entail binary code analysis.
29 lines
601 B
Makefile
29 lines
601 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/05/13 22:19:14 pirofti Exp $
|
|
|
|
COMMENT = easy-to-use minimalistic disassembler library
|
|
|
|
DISTNAME = udis86-1.7
|
|
CATEGORIES = devel
|
|
|
|
SHARED_LIBS= udis86 0.0
|
|
|
|
HOMEPAGE = http://udis86.sourceforge.net/
|
|
|
|
MAINTAINER = Paul Irofti <pirofti@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=udis86/}
|
|
|
|
WANTLIB += c
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED}
|
|
MAKE_ENV = LIBudis86_VERSION=${LIBudis86_VERSION}
|
|
|
|
.include <bsd.port.mk>
|