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

class Libdsk < Formula
  url 'http://www.seasip.info/Unix/LibDsk/libdsk-1.3.3.tar.gz'
  homepage 'http://www.seasip.info/Unix/LibDsk/'
  sha1 '5ec36eb90cc55ba74b68b1529a15c51d60d382fe'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
    (share+name+'doc').install Dir['doc/*.{html,txt,pdf}']
  end
end