homebrew-core/Formula/quvi.rb

20 lines
515 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Quvi < Formula
2010-09-04 08:46:27 +00:00
url 'http://quvi.googlecode.com/files/quvi-0.2.2.tar.bz2'
sha1 'cfeacf4c0a9958ba42ecab65098d71ecdcdd02f4'
homepage 'http://code.google.com/p/quvi/'
depends_on 'pkg-config' => :build
depends_on 'pcre'
depends_on 'lua'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-smut",
"--enable-broken"
system "make install"
end
end