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 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup Xen0ph0n yaragenerator 0.6.1 YaraGenerator |
---|
9 | categories security |
---|
10 | license GPL-2+ |
---|
11 | platforms darwin |
---|
12 | maintainers yahoo.fr:jul_bsd openmaintainer |
---|
13 | description quick, simple, and effective yara rule creation |
---|
14 | long_description \ |
---|
15 | This is a project to build a tool to attempt to allow for quick, \ |
---|
16 | simple, and effective yara rule creation to isolate malware \ |
---|
17 | families and other malicious objects of interest. This is an \ |
---|
18 | experiment and thus far I've had pretty good success with it. \ |
---|
19 | It is a work in progress and I welcome forks and feedback! |
---|
20 | |
---|
21 | homepage https://github.com/Xen0ph0n/YaraGenerator/ |
---|
22 | |
---|
23 | version 20130829 |
---|
24 | master_sites ${homepage}/archive/ |
---|
25 | distname 48f529f0d85e7fff62405d9367901487e29aa28f |
---|
26 | worksrcdir YaraGenerator-${distname} |
---|
27 | use_zip yes |
---|
28 | |
---|
29 | checksums rmd160 3a5474f1b3c868f0e799354335d9fcfabb2e3289 \ |
---|
30 | sha256 f4f7847f5efb82c95aa36988007555967adff7aac6734eb24348f8c87fe72a25 |
---|
31 | |
---|
32 | depends_run port:yara |
---|
33 | |
---|
34 | use_configure no |
---|
35 | build {} |
---|
36 | |
---|
37 | destroot { |
---|
38 | xinstall -m 755 ${worksrcpath}/yaraGenerator.py ${destroot}${prefix}/bin/ |
---|
39 | xinstall -d ${destroot}${prefix}/share/examples/${name} |
---|
40 | copy ${worksrcpath}/modules ${destroot}${prefix}/share/examples/${name}/ |
---|
41 | xinstall -d ${destroot}${prefix}/share/docs/${name} |
---|
42 | copy ${worksrcpath}/README.md ${destroot}${prefix}/share/docs/${name}/ |
---|
43 | } |
---|
44 | |
---|
45 | livecheck.type none |
---|
46 | |
---|