blob: c92afcaa9ee2ac5b0ff66e5f9a69220264469868 (
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/'
sha1 'bd525ced0b9ba99a7a178c11647a853147977fa5'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|