homebrew-core/Formula/gibbslda.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

13 lines
341 B
Ruby

require 'formula'
class Gibbslda < Formula
homepage 'http://gibbslda.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/gibbslda/GibbsLDA%2B%2B/0.2/GibbsLDA%2B%2B-0.2.tar.gz'
sha1 '3264f01ae921b6dcbbe57dd877561271df214cdd'
def install
system "make clean"
system "make all"
bin.install "src/lda"
end
end