blob: 9db9639618ef04b7d96db79cda4aa21748bb2638 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
require 'formula'
class Webp < Formula
homepage 'http://code.google.com/speed/webp/'
url 'https://webp.googlecode.com/files/libwebp-0.4.0.tar.gz'
sha1 '326c4b6787a01e5e32a9b30bae76442d18d2d1b6'
head 'https://chromium.googlesource.com/webm/libwebp', :branch => 'master'
bottle do
cellar :any
revision 1
sha1 "7d66d85810e10b0ef49cc4bf2a7b7e36972abaa3" => :yosemite
sha1 "873ca6cb0be71d93cc80f723dc263bd391c7a813" => :mavericks
sha1 "5ce282b5a2b80918657603d5714144339280fc92" => :mountain_lion
end
revision 1
option :universal
depends_on 'libpng'
depends_on 'jpeg' => :recommended
depends_on 'libtiff' => :optional
depends_on 'giflib' => :optional
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--enable-libwebpmux",
"--enable-libwebpdemux",
"--enable-libwebpdecoder",
"--prefix=#{prefix}"
system "make install"
end
test do
system "#{bin}/cwebp", test_fixtures("test.png"), "-o", "webp_test.png"
system "#{bin}/dwebp", "webp_test.png", "-o", "webp_test.webp"
end
end
|