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