Add aerc contacts

This commit is contained in:
Gabriel Augendre 2020-07-05 15:55:50 +02:00
commit 11332ada6a
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

15
Formula/aerc-contacts.rb Normal file
View file

@ -0,0 +1,15 @@
class AercContacts < Formula
desc "Search macOS Contacts and output data for aerc email client"
homepage "https://git.sr.ht/~crocmagnon/aerc-contacts-macos"
url "https://git.sr.ht/~crocmagnon/aerc-contacts-macos"
depends_on :xcode => ["10.0", :build]
def install
system "make", "install", "prefix=#{prefix}"
end
test do
system "#{bin}/aerc-contacts JohnDoe"
end
end