blob: 06f42d42ed28555b6f83fcb926794dfef8f262c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Squirrel < Formula
url 'http://downloads.sourceforge.net/project/squirrel/squirrel2/squirrel%202.2.4%20stable/squirrel_2.2.4_stable.tar.gz'
homepage 'http://www.squirrel-lang.org'
md5 'e411dfd1bcc5220aa80de53e4a5f094d'
def install
system "make"
prefix.install %w[bin include lib]
doc.install Dir['doc/*.pdf']
doc.install %w[etc samples]
end
end
|