diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/luvit.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/luvit.rb b/Library/Formula/luvit.rb new file mode 100644 index 000000000..97eefdecb --- /dev/null +++ b/Library/Formula/luvit.rb @@ -0,0 +1,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 |
