diff options
| -rw-r--r-- | Library/Formula/texwrapper.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/texwrapper.rb b/Library/Formula/texwrapper.rb new file mode 100644 index 000000000..4e3a1cd60 --- /dev/null +++ b/Library/Formula/texwrapper.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Texwrapper < Formula + homepage 'http://obrecht.fr/texwrapper/' + url 'http://obrecht.fr/texwrapper/texwrapper.0.2.2.tar.gz' + sha1 '692c157f6f8b6ea1fc8bc4720d287ab147690fcc' + + def install + system "make" + bin.install 'texwrapper' + man1.install 'texwrapper.1' + end +end |
