aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJulian2013-09-05 22:13:19 +0800
committerAdam Vandenberg2013-09-22 22:18:51 -0700
commitaea84969299f52074d716fb2ecc0835c73082960 (patch)
tree91e023c45fb14d706dcb7b0e952c7e5a677b37b1 /Library
parente15a90f8266b6233cb0dcd3de236e2f4ea231620 (diff)
downloadhomebrew-aea84969299f52074d716fb2ecc0835c73082960.tar.bz2
EJDB 1.1.23
Closes #22338. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ejdb.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/ejdb.rb b/Library/Formula/ejdb.rb
new file mode 100644
index 000000000..50f90d771
--- /dev/null
+++ b/Library/Formula/ejdb.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Ejdb < Formula
+ homepage 'http://ejdb.org/'
+ url 'https://github.com/Softmotions/ejdb/archive/v1.1.23.tar.gz'
+ sha1 '00ca2c150b2988747ad7b15148c2d624253026c5'
+
+ def install
+ cd 'tcejdb' do
+ system "./configure", "--prefix=#{prefix}", "--disable-debug"
+ system "make"
+ system "make install"
+ end
+ end
+end