class Exploitdb < Formula desc "The official Exploit Database" homepage "https://www.exploit-db.com/" url "https://github.com/offensive-security/exploit-database.git", :tag => "2017-07-10", :revision => "22bf5da09877e854bfd4a25f1f70c325cf54f565" version "2017-07-10" head "https://github.com/offensive-security/exploit-database.git" bottle :unneeded def install inreplace "searchsploit", "gitpath=\"/opt/exploit-database\"", "gitpath=\"#{pkgshare}\"" bin.install "searchsploit" pkgshare.install %w[files.csv platforms .git] end test do system "#{bin}/searchsploit", "sendpage" end end