aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/nimrod.rb
blob: 0ffc92480b6f1fa9f0181fc36c1e75f28419a2e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Nimrod < Formula
  homepage 'http://force7.de/nimrod/'
  url 'http://force7.de/nimrod/download/nimrod_0.8.14.zip'
  md5 '3b89c11e4071bf492134c8f4258ebd5d'

  head 'https://github.com/Araq/Nimrod.git'

  def install
    system "/bin/sh", "./build.sh"
    inreplace 'install.sh', '$1/nimrod', '$1'
    system "/bin/sh", "./install.sh", prefix
  end
end