diff options
| author | Daiderd Jordan | 2013-05-19 16:22:59 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-18 09:15:00 -0700 |
| commit | c3d2a475205d6aab8ff085a877bc13651f668db3 (patch) | |
| tree | 8ea7e278616401f661f4e029d1dc02eb88a8ed35 /Library/Formula | |
| parent | 39b75a7ee6587d6ba7b9af7d343e1647cdf3714d (diff) | |
| download | homebrew-c3d2a475205d6aab8ff085a877bc13651f668db3.tar.bz2 | |
Luvit 0.6.1
Closes #19925.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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 |
