libdsk 1.3.3

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Mark A. Matienzo 2011-07-14 11:24:02 -04:00 committed by Adam Vandenberg
parent 9755945a88
commit e4e56fa382
1 changed files with 14 additions and 0 deletions

14
Formula/libdsk.rb Normal file
View File

@ -0,0 +1,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/'
md5 '2cce41b4b1325d697183e34afcae2a9c'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
(share+name+'doc').install Dir['doc/*.{html,txt,pdf}']
end
end