44923a125e
Closes Homebrew/homebrew#16443. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
29 lines
772 B
Ruby
29 lines
772 B
Ruby
require 'formula'
|
|
|
|
class Shmcat < Formula
|
|
homepage 'http://shmcat.sourceforge.net/'
|
|
url 'http://heanet.dl.sourceforge.net/project/shmcat/shmcat-1.6.tar.bz2'
|
|
sha1 '13650adef363bf9c7c97602036cf6c3241f1a86d'
|
|
|
|
option 'with-ftok', "Build the ftok utility"
|
|
option 'with-nls', "Use Native Language Support"
|
|
|
|
depends_on 'gettext' if build.include? 'with-nls'
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
args << "--disable-ftok" unless build.include? 'with-ftok'
|
|
if build.include? 'with-nls'
|
|
gettext = Formula.factory('gettext')
|
|
args << "--with-libintl-prefix=#{gettext.include}"
|
|
else
|
|
args << "--disable-nls"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|