blob: 1843d741957721fbbc8c4ab003f1918cba6f1459 (
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'
  md5 'f324ec49888c6c642c998ee8c3a8ce21'
  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
 |