class Aespipe < Formula desc "AES encryption or decryption for pipes" homepage "http://loop-aes.sourceforge.net/" url "http://loop-aes.sourceforge.net/aespipe/aespipe-v2.4c.tar.bz2" sha1 "198cc0bc1168a7a150de4b7308be096c903b0d90" bottle do cellar :any sha1 "f3441fee13b4daab1a717abd55453791278206e2" => :yosemite sha1 "f72e5107d0ff2a6a9d215b956c806c6fcf4ba208" => :mavericks sha1 "77f01ed2cae7844319119520576e5b198ff4e9a0" => :mountain_lion end def install system "./configure", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"secret").write "thisismysecrethomebrewdonttellitplease" msg = "Hello this is Homebrew" encrypted = pipe_output("#{bin}/aespipe -P secret", msg) decrypted = pipe_output("#{bin}/aespipe -P secret -d", encrypted) assert_equal msg, decrypted.gsub(/\x0+$/, "") end end