Ticket #30956: Portfile

File Portfile, 1.0 KB (added by jessekornblum@…, 13 years ago)
Line 
1# $Id$
2
3PortSystem              1.0
4
5name                    ssdeep
6version                 2.6
7categories              security sysutils
8license                 GPLv2
9maintainers             gmail.com:jessekornblum
10description             Recursively compute fuzzy hashes on files
11long_description \
12  ssdeep is a program for computing fuzzy hashes on files. These hashes \
13  can be used for finding similar files.
14
15platforms               darwin
16
17homepage                http://ssdeep.sourceforge.net/
18master_sites            sourceforge
19
20checksums           md5     be390ccb8a8d506c8c3c253eb077f365 \
21                    sha1    acb4937d943d7f0e7590407e5cb15ca16f61bec2 \
22                    rmd160  6fd7a38539bab4fa45d8ebfa064706fcfd659e9c
23
24configure.args          --mandir=${prefix}/share/man
25
26post-destroot {
27   xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
28   xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog FILEFORMAT \
29      NEWS README TODO ${destroot}${prefix}/share/doc/${name}
30}
31
32livecheck.type      regex
33livecheck.regex     ${name}-(\[.\\d\]+)\.tar\.gz
34livecheck.url       http://sourceforge.net/projects/${name}/files/${name}
35
36
37
38