mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
28 lines
577 B
Makefile
28 lines
577 B
Makefile
# New ports collection makefile for: uberkey
|
|
# Date created: 2007-10-29
|
|
# Whom: chinsan
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= uberkey
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.linuks.mine.nu/uberkey/ LOCAL/chinsan
|
|
|
|
MAINTAINER= chinsan@FreeBSD.org
|
|
COMMENT= A keylogger for x86 systems
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
MAN8= uberkey.8
|
|
PLIST_FILES= bin/uberkey
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${CC} ${CFLAGS} *.c -o ${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
@${INSTALL_MAN} ${WRKSRC}/${MAN8} ${MAN1PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|