blob: 97eefdecbd087bcd00ad673b40f9eb0b33091c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Luvit < Formula
homepage 'http://luvit.io'
url 'http://luvit.io/dist/latest/luvit-0.6.1.tar.gz'
sha1 'f5e49a33e0e32d8e75d5cdd843d54f213f6e508e'
head 'https://github.com/luvit/luvit.git'
def install
ENV['PREFIX'] = prefix
system './configure'
system 'make'
system 'make', 'install'
end
end
|