blob: 430378b8239b8c769e27e1f5fb02eef49a1c8319 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Ejdb < Formula
homepage 'http://ejdb.org/'
url 'https://github.com/Softmotions/ejdb/archive/v1.1.24.tar.gz'
sha1 'b743aef55a39a64bd4ee0e94fa58e2c90e63db02'
def install
cd 'tcejdb' do
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "make"
system "make install"
end
end
end
|