Skip to content

Commit

Permalink
Add slony1 formula
Browse files Browse the repository at this point in the history
Add slony1 formula for homebrew
  • Loading branch information
Allen Huang committed Sep 28, 2012
1 parent d1cb3d9 commit dbd4fda
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Library/Formula/slony1.rb
@@ -0,0 +1,17 @@
require 'formula'

class Slony1 < Formula
homepage 'http://slony.info/'
url 'http://slony.info/downloads/2.1/source/slony1-2.1.2.tar.bz2'
sha1 '47449fbc742a25eefdab088ab650973416bccb53'

def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end

def test
system "slon", "-v"
end
end

0 comments on commit dbd4fda

Please sign in to comment.