d48ac66c8e
Fcrackzip is a free, fast and featureful ZIP password cracker, written in portable C (and optional x86 assembly). It allows the user to recover forgotten ZIP archive passwords, using either a brute force or dictionary attack on the provided files. from maintainer Jung, with a few adjustments by myself.
34 lines
760 B
Makefile
34 lines
760 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/03/31 01:50:12 sthen Exp $
|
|
|
|
COMMENT = ZIP password cracker
|
|
|
|
DISTNAME = fcrackzip-1.0
|
|
CATEGORIES = security archivers
|
|
|
|
HOMEPAGE = http://home.schmorp.de/marc/fcrackzip.html
|
|
|
|
MAINTAINER = Jung Lee <moorang@gmail.com>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = yes
|
|
PERMIT_PACKAGE_FTP = yes
|
|
PERMIT_DISTFILES_CDROM =yes
|
|
PERMIT_DISTFILES_FTP = yes
|
|
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES = http://home.schmorp.de/data/marc/
|
|
|
|
CONFIGURE_STYLE = autoconf
|
|
AUTOCONF_VERSION = 2.61
|
|
|
|
# for the --use-unzip option
|
|
RUN_DEPENDS = ::archivers/unzip
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/fcrackzip.1 ${PREFIX}/man/man1
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fcrackzip ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/zipinfo ${PREFIX}/bin/fcrackzipinfo
|
|
|
|
.include <bsd.port.mk>
|