aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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