2010-07-07 21:53:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dbslayer < Formula
|
2010-07-07 21:53:11 +00:00
|
|
|
homepage 'http://code.nytimes.com/projects/dbslayer/wiki'
|
2012-02-26 06:40:35 +00:00
|
|
|
url 'http://code.nytimes.com/downloads/dbslayer-beta-12.tgz'
|
2010-07-07 21:53:11 +00:00
|
|
|
version '0.12.b'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'fbf1c5563a6ee45783e31f6b49612e64fc141186'
|
2010-07-07 21:53:11 +00:00
|
|
|
|
2012-11-06 02:03:26 +00:00
|
|
|
depends_on :mysql
|
2010-07-07 21:53:11 +00:00
|
|
|
|
2012-03-01 04:36:21 +00:00
|
|
|
def install
|
2010-07-07 21:53:11 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|