Ticket #44841: Portfile

File Portfile, 1.7 KB (added by jul_bsd@…, 10 years ago)
Line 
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
4PortSystem              1.0
5
6PortGroup           github 1.0
7
8github.setup        Xen0ph0n yaragenerator 0.6.1 YaraGenerator
9categories          security
10license             GPL-2+
11platforms           darwin
12maintainers         yahoo.fr:jul_bsd openmaintainer
13description         quick, simple, and effective yara rule creation
14long_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
21homepage            https://github.com/Xen0ph0n/YaraGenerator/
22
23version             20130829
24master_sites        ${homepage}/archive/
25distname            48f529f0d85e7fff62405d9367901487e29aa28f
26worksrcdir          YaraGenerator-${distname}
27use_zip             yes
28
29checksums           rmd160  3a5474f1b3c868f0e799354335d9fcfabb2e3289 \
30                    sha256  f4f7847f5efb82c95aa36988007555967adff7aac6734eb24348f8c87fe72a25
31
32depends_run         port:yara
33
34use_configure       no
35build {}
36
37destroot {
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
45livecheck.type          none
46