aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorKohei Ozaki2011-03-07 07:33:27 +0900
committerAdam Vandenberg2011-03-29 22:58:28 -0700
commit75d64b8568ad3f095d0f508f12075283987a3b2f (patch)
treeee832f87e5f98fb04490627b4ea39df9fefd1c14 /Library
parent40e972a4ffd2dd06324117746f58b2a707589e36 (diff)
downloadhomebrew-75d64b8568ad3f095d0f508f12075283987a3b2f.tar.bz2
sary 1.2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sary.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/sary.rb b/Library/Formula/sary.rb
new file mode 100644
index 000000000..232c896f0
--- /dev/null
+++ b/Library/Formula/sary.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Sary <Formula
+ url 'http://sary.sourceforge.net/sary-1.2.0.tar.gz'
+ md5 '10b9a803025c5f428014a7f1ff849ecc'
+ homepage 'http://sary.sourceforge.net/'
+ version '1.2.0'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'glib'
+
+ def install
+ system "./configure", "--prefix=#{prefix}",
+ "--mandir=#{man}"
+ system "make install"
+ end
+end