homebrew-core/Formula/puf.rb

15 lines
431 B
Ruby
Raw Normal View History

require 'formula'
class Puf < Formula
homepage 'http://puf.sourceforge.net/'
2013-01-28 05:34:37 +00:00
url 'http://downloads.sourceforge.net/project/puf/puf/1.0.0/puf-1.0.0.tar.gz'
sha1 '2e804cf249faf29c58aac26933cfa10b437710c3'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
2013-01-28 05:34:37 +00:00
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end