forked from zegervdv/homebrew-zathura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
girara.rb
44 lines (38 loc) · 1.51 KB
/
girara.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
33
34
35
36
37
38
39
40
41
42
43
# 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 Girara < Formula
homepage "https://pwmt.org/projects/girara/"
url "https://github.com/pwmt/girara/archive/0.3.5.tar.gz"
sha256 "ce6bc8cb95ec886dc01c6ce8ea8ccf1d17db523d78dec1aa380115b2804971d8"
version "0.3.5"
# depends_on "cmake" => :build
depends_on 'pkg-config'
depends_on 'gtk+3'
depends_on 'gtk-mac-integration'
depends_on 'gettext'
depends_on 'meson'
depends_on 'libnotify'
def install
inreplace "girara/utils.c" do |s|
s.gsub! /xdg-open/, "open"
end
# Set HOMBREW_PREFIX
ENV['CMAKE_INSTALL_PREFIX'] = prefix
system "mkdir build"
system "meson build --prefix #{prefix}"
system "cd build && ninja && ninja install"
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 girara`. 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