aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSamuel Cochran2013-09-12 19:17:34 +1000
committerAdam Vandenberg2013-10-31 08:00:29 -0700
commitdcee77f4dd4b437d83a9a8f30b9ead29c5bd6216 (patch)
treec7c1992ba139616c648dd9f0d94afd47ae554247 /Library
parentf2494242bfa56d4b2d9ec19cc567cb04de881420 (diff)
downloadhomebrew-dcee77f4dd4b437d83a9a8f30b9ead29c5bd6216.tar.bz2
st 1.0.8
Closes #22489. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/st.rb12
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