aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/di.rb
blob: 6d31ba6d0994f0e7d7d69c718fd4627748d6ffef (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.34.tar.gz'
  sha1 '5be548368bb795303f11cff340f3bbc659f892cd'

  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