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

class Di < Formula
  homepage 'http://www.gentoo.com/di/'
  url 'http://gentoo.com/di/di-4.31.tar.gz'
  sha1 '2a7212e03286b68ebb4783ae8937999145165c79'

  def install
    system "make", "prefix=#{prefix}", "DI_MANDIR=#{man1}"
    system "make", "install", "prefix=#{prefix}", "DI_MANDIR=#{man1}"
  end

  def test
    system "#{bin}/di"
  end
end