blob: 3efab794085fdac3031e2ac3d46d6b166142830b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Webp < Formula
url 'http://webp.googlecode.com/files/libwebp-0.1.2.tar.gz'
homepage 'http://code.google.com/speed/webp/'
md5 '5534f6e3c8b9f5851a9a5b56bf78f2b0'
def install
system "./autogen.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|