diff options
author | wiz <wiz@pkgsrc.org> | 2020-06-21 20:25:45 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2020-06-21 20:25:45 +0000 |
commit | 3aa3e348bb789d1ab202e3dbbd83aa0a02a1969c (patch) | |
tree | a6e5496d8db244e6bc6cce2bcf9e1b223262758c /www/firefox_decrypt/Makefile | |
parent | 86c53b68089d5a2d64d84b9f207cc57feba6c287 (diff) | |
download | pkgsrc-3aa3e348bb789d1ab202e3dbbd83aa0a02a1969c.tar.gz |
www/firefox_decrypt: import firefox_decrypt-0.7.0
Firefox Decrypt is a tool to extract passwords from profiles of
Mozilla (Fire/Water)fox, Thunderbird, SeaMonkey, and some derivates.
It can be used to recover passwords from a profile protected by a
Master Password as long as the latter is known. If a profile is
not protected by a Master Password, a password will still be
requested but can be left blank.
This tool does not try to crack or brute-force the Master Password
in any way. If the Master Password is not known it will simply fail
to recover any data.
Diffstat (limited to 'www/firefox_decrypt/Makefile')
-rw-r--r-- | www/firefox_decrypt/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/www/firefox_decrypt/Makefile b/www/firefox_decrypt/Makefile new file mode 100644 index 00000000000..2570d593242 --- /dev/null +++ b/www/firefox_decrypt/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1 2020/06/21 20:25:45 wiz Exp $ + +DISTNAME= firefox_decrypt-0.7.0 +CATEGORIES= www +MASTER_SITES= ${MASTER_SITE_GITHUB:=unode/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/unode/firefox_decrypt/ +COMMENT= Extract passwords from Mozilla Firefox profiles +LICENSE= gnu-gpl-v3 + +PYTHON_VERSIONS_INCOMPATIBLE= 27 +REPLACE_PYTHON= firefox_decrypt.py +INSTALLATION_DIRS= bin + +SUBST_CLASSES+= nss +SUBST_FILES.nss+= ${REPLACE_PYTHON} +SUBST_STAGE.nss= pre-configure +SUBST_VARS.nss+= PREFIX + +do-build: + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/firefox_decrypt.py ${DESTDIR}${PREFIX}/bin + +.include "../../lang/python/application.mk" +.include "../../mk/bsd.pkg.mk" |