aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorLeroux Cifer2013-01-30 01:50:42 -0600
committerAdam Vandenberg2013-02-02 15:56:09 -0800
commit3bf3c7212460511cd5b83efc6919d2fa93dcf574 (patch)
tree34473792d15231e319c02dfe7a7544d510b39bba /Library
parent1ef3498d89edad6696609eda36f78db7b26f9f2e (diff)
downloadhomebrew-3bf3c7212460511cd5b83efc6919d2fa93dcf574.tar.bz2
tenyr 0.5.0
Closes #17433. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tenyr.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/tenyr.rb b/Library/Formula/tenyr.rb
new file mode 100644
index 000000000..89b0d783f
--- /dev/null
+++ b/Library/Formula/tenyr.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Tenyr < Formula
+ homepage 'http://tenyr.info/'
+ url 'https://github.com/kulp/tenyr/archive/v0.5.0.tar.gz'
+ sha1 '90b2ef38c25c9d35a9114c28994655b81466f466'
+
+ head 'https://github.com/kulp/tenyr.git'
+
+ depends_on 'bison' # tenyr requires bison >= 2.5
+
+ def install
+ system "make"
+ bin.install 'tsim', 'tas', 'tld'
+ end
+end