diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/shorten.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/shorten.rb b/Library/Formula/shorten.rb new file mode 100644 index 000000000..9e5881e77 --- /dev/null +++ b/Library/Formula/shorten.rb @@ -0,0 +1,12 @@ +require 'brewkit' + +class Shorten <Formula + @url='http://www.etree.org/shnutils/shorten/dist/src/shorten-3.6.1.tar.gz' + @homepage='http://www.etree.org/shnutils/shorten/' + @md5='fb59c16fcedc4f4865d277f6e45866a7' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
