homebrew-core/Formula/qjson.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

15 lines
363 B
Ruby

require 'formula'
class Qjson < Formula
homepage 'http://qjson.sourceforge.net'
url 'https://downloads.sourceforge.net/project/qjson/qjson/0.8.1/qjson-0.8.1.tar.bz2'
sha1 '197ccfd533f17bcf40428e68a82e6622047ed4ab'
depends_on 'cmake' => :build
depends_on 'qt'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end