2013-03-04 15:26:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vcprompt < Formula
|
|
|
|
homepage 'https://bitbucket.org/gward/vcprompt'
|
2013-12-03 21:00:17 +00:00
|
|
|
url 'https://bitbucket.org/gward/vcprompt/downloads/vcprompt-1.2.tar.gz'
|
|
|
|
sha1 '5e46cc8525f823ecd66c624903f15f5c50276290'
|
2013-03-04 15:26:17 +00:00
|
|
|
|
2013-12-03 21:00:17 +00:00
|
|
|
head do
|
|
|
|
url 'hg://https://bitbucket.org/gward/vcprompt'
|
|
|
|
depends_on :autoconf
|
|
|
|
end
|
|
|
|
|
|
|
|
depends_on 'sqlite'
|
2013-03-04 15:26:17 +00:00
|
|
|
|
|
|
|
def install
|
2013-12-03 21:00:17 +00:00
|
|
|
system "autoconf" if build.head?
|
|
|
|
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
|
2013-03-04 15:26:17 +00:00
|
|
|
system "make", "PREFIX=#{prefix}",
|
|
|
|
"MANDIR=#{man1}",
|
|
|
|
"install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/vcprompt"
|
|
|
|
end
|
|
|
|
end
|