aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorWesley Hill2014-12-19 02:02:59 +0000
committerMike McQuaid2015-01-10 13:47:05 +0000
commit930ceffe44e247f0c1b8c0864c241f11c909d5f6 (patch)
tree5e21a53059003d07332d5defa65b28b632f04032 /Library/Formula
parent99c6c57460839a984560d8429ccd34f2b01b6d5e (diff)
downloadhomebrew-930ceffe44e247f0c1b8c0864c241f11c909d5f6.tar.bz2
memo 1.5 (new formula)
Closes #35116.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/memo.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/memo.rb b/Library/Formula/memo.rb
new file mode 100644
index 000000000..577faf92b
--- /dev/null
+++ b/Library/Formula/memo.rb
@@ -0,0 +1,15 @@
+class Memo < Formula
+ url "http://www.getmemo.org/memo-1.5.tar.gz"
+ homepage "http://www.getmemo.org"
+ sha1 "3e047b09e91d695f1767d1dd6d179732c07a5759"
+
+ def install
+ bin.mkpath
+ system "make", "PREFIX=#{prefix}", "install"
+ end
+
+ test do
+ ENV["MEMO_PATH"] = testpath/"memos"
+ system "#{bin}/memo", "-a", "Lorem ipsum dolor sit amet."
+ end
+end