blob: 3ab7f9a0e4d19d2ee38667131e74251b04010c1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Shorten < Formula
  homepage 'http://www.etree.org/shnutils/shorten/'
  url 'http://www.etree.org/shnutils/shorten/dist/src/shorten-3.6.1.tar.gz'
  sha1 'bd525ced0b9ba99a7a178c11647a853147977fa5'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |