aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shorten.rb
blob: 45d1a9d23d77aff237b5bd5c1797fc04a0f305b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

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