1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name bulk_extractor |
---|
7 | version 1.3.1 |
---|
8 | |
---|
9 | |
---|
10 | categories security sysutils |
---|
11 | platforms darwin |
---|
12 | maintainers gmail.com:jessekornblum |
---|
13 | license public-domain |
---|
14 | |
---|
15 | description Extract investigative features |
---|
16 | |
---|
17 | long_description Extracts small pieces of useful information, such as credit card numbers, phone numbers, and social security numbers, from input without parsing filesystem information. |
---|
18 | |
---|
19 | homepage https://github.com/simsong/bulk_extractor |
---|
20 | master_sites http://digitalcorpora.org/downloads/bulk_extractor/ |
---|
21 | |
---|
22 | checksums rmd160 e33128e36d6ff816a5cddeafa0fb568a90d678ff \ |
---|
23 | sha256 bf085b442a35e8a80cb5dfaa6d7c8152fdcdf4cca5061eb0ad9a0fe0a01cfdda |
---|
24 | |
---|
25 | depends_lib port:tre \ |
---|
26 | port:libewf \ |
---|
27 | port:flex |
---|
28 | |
---|
29 | post-destroot { |
---|
30 | set docdir ${prefix}/share/doc/${name} |
---|
31 | xinstall -d ${destroot}${docdir} |
---|
32 | xinstall -m 644 -W ${worksrcpath} \ |
---|
33 | AUTHORS COPYING ChangeLog INSTALL NEWS README ROADMAP.txt \ |
---|
34 | ${destroot}${docdir} |
---|
35 | } |
---|
36 | |
---|
37 | livecheck.regex /${name}-(\[0-9.-\]+)${extract.suffix} |
---|