Ticket #46873: Portfile

File Portfile, 1.7 KB (added by jul_bsd@…, 9 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: Portfile 70206 2010-08-01 23:28:25Z ryandesign@macports.org $
3
4PortSystem          1.0
5
6PortGroup           github 1.0
7
8name                volatility-profiles
9github.setup        volatilityfoundation profiles 0.1
10categories          security
11platforms           darwin
12maintainers         yahoo.fr:jul_bsd openmaintainer
13license             GPL-2+
14description         Volatility profiles for Linux and Mac OS X
15long_description    ${description}
16homepage            http://www.volatilityfoundation.org/
17## No current release
18master_sites        https://github.com/volatilityfoundation/profiles/archive/
19version             20150104
20distname            1a7b6cf60bcbb90b195ee8cdb17a1177600c05ee
21checksums           rmd160  850c10aa0703a266f1462cb80aa30f21962c8d1a \
22                    sha256  0f477647857ba233335f328079f9e6010a2c11e4ef2839c5ac82a70f8649ae8e
23worksrcdir          profiles-${distname}
24
25depends_run-append  port:volatility
26
27use_configure       no
28build {}
29
30destroot {
31    xinstall -d ${destroot}${prefix}/share/doc/${name}
32    xinstall -m 644 -W ${worksrcpath} \
33        README.md \
34        ${destroot}${prefix}/share/doc/${name}
35
36    xinstall -d ${destroot}${prefix}/share/examples/${name}
37    foreach d { Linux Mac } {
38        copy ${worksrcpath}/${d} ${destroot}${prefix}/share/examples/${name}/
39    }
40
41}
42
43notes "
44you need to symlink profiles in Volatility plugins dir, eg similar to
45${prefix}/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/volatility/plugins/overlays
46It is recommended to do only the profile you use else you will make volatility slow to load.
47
48"
49
50livecheck.type      none