72f69d03d2
- 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>
22 lines
544 B
Ruby
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
|