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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | name volatility-profiles |
---|
9 | github.setup volatilityfoundation profiles 0.1 |
---|
10 | categories security |
---|
11 | platforms darwin |
---|
12 | maintainers yahoo.fr:jul_bsd openmaintainer |
---|
13 | license GPL-2+ |
---|
14 | description Volatility profiles for Linux and Mac OS X |
---|
15 | long_description ${description} |
---|
16 | homepage http://www.volatilityfoundation.org/ |
---|
17 | ## No current release |
---|
18 | master_sites https://github.com/volatilityfoundation/profiles/archive/ |
---|
19 | version 20150104 |
---|
20 | distname 1a7b6cf60bcbb90b195ee8cdb17a1177600c05ee |
---|
21 | checksums rmd160 850c10aa0703a266f1462cb80aa30f21962c8d1a \ |
---|
22 | sha256 0f477647857ba233335f328079f9e6010a2c11e4ef2839c5ac82a70f8649ae8e |
---|
23 | worksrcdir profiles-${distname} |
---|
24 | |
---|
25 | depends_run-append port:volatility |
---|
26 | |
---|
27 | use_configure no |
---|
28 | build {} |
---|
29 | |
---|
30 | destroot { |
---|
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 | |
---|
43 | notes " |
---|
44 | you 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 |
---|
46 | It is recommended to do only the profile you use else you will make volatility slow to load. |
---|
47 | |
---|
48 | " |
---|
49 | |
---|
50 | livecheck.type none |
---|