88779ade49
Closes Homebrew/homebrew#14653.
13 lines
360 B
Ruby
13 lines
360 B
Ruby
require 'formula'
|
|
|
|
class Shtool < Formula
|
|
url 'http://ftpmirror.gnu.org/shtool/shtool-2.0.8.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/shtool/shtool-2.0.8.tar.gz'
|
|
homepage 'http://www.gnu.org/software/shtool/'
|
|
sha1 '4b974f92d3932ea121e311e3b22c328d3b3572d4'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|