diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/st.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/st.rb b/Library/Formula/st.rb new file mode 100644 index 000000000..6bcde654d --- /dev/null +++ b/Library/Formula/st.rb @@ -0,0 +1,12 @@ +require 'formula' + +class St < Formula + homepage 'https://github.com/nferraz/st' + url 'https://github.com/nferraz/st/archive/v1.0.8.tar.gz' + sha1 'cb85e1fba35aeeafe347088ccae910f9072bf91e' + + def install + system "perl", "Makefile.PL", "PREFIX=#{prefix}" + system "make", "install" + end +end |
