forked from zegervdv/homebrew-zathura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libspectre.rb
30 lines (26 loc) · 1.27 KB
/
libspectre.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
# 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 Libspectre < Formula
homepage "http://www.freedesktop.org/wiki/Software/libspectre/"
url "http://libspectre.freedesktop.org/releases/libspectre-0.2.7.tar.gz"
version "0.2.7"
sha256 "e81b822a106beed14cf0fec70f1b890c690c2ffa150fa2eee41dc26518a6c3ec"
depends_on 'ghostscript'
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install" # if this fails, try separate make/make install steps
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 libspectre`. 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