commit 11332ada6ae3a4a8b3a2d950f1077637725ccbe8 Author: Gabriel Augendre Date: Sun Jul 5 15:55:50 2020 +0200 Add aerc contacts diff --git a/Formula/aerc-contacts.rb b/Formula/aerc-contacts.rb new file mode 100644 index 0000000..3a42222 --- /dev/null +++ b/Formula/aerc-contacts.rb @@ -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