aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/srecord.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/srecord.rb b/Library/Formula/srecord.rb
new file mode 100644
index 000000000..0ef2cfac1
--- /dev/null
+++ b/Library/Formula/srecord.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Srecord < Formula
+ homepage 'http://srecord.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/srecord/srecord/1.59/srecord-1.59.tar.gz'
+ md5 '5e01ba19c4f3fb8b5beca47cb46665f2'
+
+ depends_on 'boost'
+ depends_on 'libgcrypt'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "LIBTOOL=glibtool"
+ system "make install"
+ end
+end