blob: db4af09f546035bee164c6bbaa92c62f5346535d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Libwmf <Formula
url 'http://downloads.sourceforge.net/project/wvware/libwmf/0.2.8.4/libwmf-0.2.8.4.tar.gz'
homepage 'http://wvware.sourceforge.net/libwmf.html'
md5 'd1177739bf1ceb07f57421f0cee191e0'
def install
ENV.libpng
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "make"
ENV.j1 # yet another rubbish Makefile
system "make install"
end
end
|