blob: 8fcd4e4fe8bc055eb076ef65671d3e807d43e448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Fossil < Formula
homepage 'http://www.fossil-scm.org/'
url 'http://www.fossil-scm.org/download/fossil-src-20120317175325.tar.gz'
md5 'a7106450722e8477972d230fa535702f'
version '1.22'
head 'fossil://http://www.fossil-scm.org/'
def install
system "./configure"
system "make"
bin.install 'fossil'
end
end
|