blob: 8a646628bff037e0851b076c5ca5b3ba23eef8d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  | 
require 'formula'
class Fiwalk <Formula
  url 'http://afflib.org/downloads/fiwalk-0.6.5.tar.gz'
  homepage 'http://afflib.org/software/fiwalk'
  md5 'b5ca30765b25455006c82725b33af142'
  depends_on 'sleuthkit'
  depends_on 'afflib'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
    (share+name).mkpath
    cd 'plugins' do
      # For some reason make install does not create the Java plugins JAR file even though it
      # builds other things in the plugins directory.
      system "make plugins.jar"
      libexec.install 'plugins.jar' => 'fiwalk-plugins.jar'
      # Install Python script-based plugins.
      bin.install Dir['*.py']
      # Fix paths in fiwalk's config file
      inreplace 'ficonfig.txt' do |s|
        s.gsub! 'dgi	../plugins/jpeg_extract', "dgi	#{prefix}/jpeg_extract"
        s.gsub! '../plugins/plugins.jar', "#{libexec}/fiwalk-plugins.jar"
      end
      (share+name).install 'ficonfig.txt'
    end
    # Install Python bindings and extra scripts.
    (share+name+'python').install Dir['python/*.py']
  end
  def caveats; <<-EOS.undent
    fiwalk's config file is located at:
      #{share+name}/ficonfig.txt
    You may need to add the directory containing the Python bindings to your PYTHONPATH:
      #{share+name}/python
    EOS
  end
end
  |