homebrew-core/Formula/dbslayer.rb

35 lines
902 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Dbslayer < Formula
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'
version '0.12.b'
2012-02-26 06:40:35 +00:00
md5 'a529ea503c244d723166f78c75df3bb3'
def install
2012-03-03 23:50:27 +00:00
unless which 'mysql_config'
opoo "No MySQL client library detected"
puts "This formula may fail to build, see caveats for more information."
end
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
2012-02-26 06:40:35 +00:00
def caveats; <<-EOS.undent
DBSlayer depends on a MySQL client library.
You can install this with Homebrew using:
brew install mysql
For MySQL server.
brew install mysql-connector-c
For MySQL client libraries only.
We don't install these for you when you install this formula, as
we don't know which datasource you intend to use.
EOS
end
end