-
Notifications
You must be signed in to change notification settings - Fork 0
/
woff2.rb
32 lines (28 loc) · 1.35 KB
/
woff2.rb
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
# Documentation: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Formula-Cookbook.md
# /usr/local/Library/Contributions/example-formula.rb
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
class Woff2 < Formula
homepage "https://github.com/google/woff2"
url "https://github.com/google/woff2.git", :revision => "afbecce5ff16faf92ce637eab991810f5b66f803", :using => :git
version "2.0.1"
# depends_on "cmake" => :build
# depends_on :x11 # if your formula requires any X11/XQuartz components
def install
# system "cmake", ".", *std_cmake_args
system "make", "clean", "all" # if this fails, try separate make/make install steps
bin.install "woff2_compress"
bin.install "woff2_decompress"
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! It's enough to just replace
# "false" with the main program this formula installs, but it'd be nice if you
# were more thorough. Run the test with `brew test woff`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system "false"
end
end