blob: 373868f3e5786405417f8fc8df2584c838fa8572 (
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
|