diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tenyr.rb | 16 |
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 |
