homebrew-core/Formula/sedna.rb

31 lines
706 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Sedna < Formula
homepage 'http://modis.ispras.ru/sedna/index.html'
2012-02-22 05:12:27 +00:00
url 'http://www.modis.ispras.ru/FTPContent/sedna/current/sedna-3.4.66-src-darwin.tar.gz'
md5 '8c0006dbfb0ab89a63b4ae93e35f2213'
2011-11-30 02:54:32 +00:00
depends_on 'cmake' => :build
def install
path = pwd
# Build needs to be created from outside the source directory.
mktemp do
2012-02-22 05:12:27 +00:00
system "cmake #{std_cmake_parameters} #{path}"
system "make install"
end
end
def caveats; <<-EOS.undent
If this is your first install, create a database with:
se_cdb <db name>
Start your database manually with:
se_gov && se_sm <db name>
And stop with:
se_stop
EOS
end
end