homebrew-core/Formula/wv.rb
Juan Sebastian Casallas 72f69d03d2 wv 1.2.5
- Updated the url to download the 1.2.5 tarball from abisource (current
   maintainers).
 - Updated the md5 for the 1.2.5 tarball.
 - Updated the homepage to the official project site (old link appears
   to be dead).

Closes Homebrew/homebrew#8168.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-06 16:21:58 -06:00

22 lines
544 B
Ruby

require 'formula'
class Wv < Formula
url 'http://abisource.com/downloads/wv/1.2.5/wv-1.2.5.tar.gz'
homepage 'http://wvware.sourceforge.net/'
md5 'ae506eae4825c93d0cd7939ce6cbae41'
depends_on 'glib'
depends_on 'libgsf'
depends_on 'libwmf'
def install
ENV.libxml2
ENV.libpng
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
ENV.deparallelize
system "make install"
end
end