1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/security/dissembler/Makefile
Florent Thoumie 80104e2b49 - Add dissembler 0.9, Tiny and clever tool to convert shellcode to ASCII.
PR:		ports/78783
Submitted by:	Jonathan <onatan@gmail.com>
2005-03-13 21:54:37 +00:00

33 lines
760 B
Makefile

# Ports collection makefile for: dissembler
# Date created: 13 Mar 2005
# Whom: Yonatan <onatan@gmail.com>
#
# $FreeBSD$
#
PORTNAME= dissembler
PORTVERSION= 0.9
CATEGORIES= security
MASTER_SITES= http://www.phiral.com/research/
DISTNAME= ${PORTNAME}_${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= onatan@gmail.com
COMMENT= A tool that polymorphs bytecode to a printable ASCII string
WRKSRC= ${WRKDIR}/${DISTNAME}
PLIST_FILES=bin/${PORTNAME}
PORTDOCS= ${PORTNAME}.txt
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
. if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.txt ${DOCSDIR}
. endif
.include <bsd.port.mk>