diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ejdb.rb | 15 | 
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  | 
