homebrew-formulae/Formula/aerc-contacts.rb

26 lines
870 B
Ruby
Raw Normal View History

2020-07-05 15:55:50 +02:00
class AercContacts < Formula
desc "Search macOS Contacts and output data for aerc email client"
2020-07-05 16:32:49 +02:00
homepage "https://sr.ht/~crocmagnon/aerc-contacts-macos/"
2020-07-06 09:04:42 +02:00
url "https://git.sr.ht/~crocmagnon/aerc-contacts-macos", :tag => "0.1.0", :using => :git, :revision => "58579a5ed7b3afdbddd84ea769701a5c4802eb4c"
2020-07-05 16:32:49 +02:00
sha256 "d415b1ac07865941fe3db77d2f1d2888d47f03759959bde47bbc7b6f2146945c"
license "MIT"
2020-07-06 09:04:42 +02:00
head "https://git.sr.ht/~crocmagnon/aerc-contacts-macos", :using => :git
bottle do
root_url "https://dl.bintray.com/crocmagnon/bottles-formulae"
cellar :any_skip_relocation
sha256 "84bf0bcf58550458a5b92669faa5b523f728fdd8f3fe103cc5a81deaedd1a19a" => :catalina
end
2020-07-05 15:55:50 +02:00
2020-07-05 16:32:49 +02:00
depends_on :xcode => ["10.0", :build]
2020-07-06 09:04:42 +02:00
2020-07-05 15:55:50 +02:00
def install
2020-07-05 16:32:49 +02:00
bin.mkpath
2020-07-05 15:55:50 +02:00
system "make", "install", "prefix=#{prefix}"
end
test do
system "#{bin}/aerc-contacts JohnDoe"
end
end