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