blob: acec803ba43e61d1228914da3986c14c8c91e568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Gistit < Formula
homepage 'http://gistit.herokuapp.com/'
url 'https://github.com/jrbasso/gistit/archive/v0.1.2.tar.gz'
sha1 '9b20f3c0f81a9cb07e904e4f98f727e07caab8f3'
depends_on :autoconf
depends_on :automake
depends_on 'jansson'
def install
mv "configure.in", "configure.ac" # silence warning
system "./autogen.sh", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
test do
system "#{bin}/gistit -v"
end
end
|