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

16 lines
377 B
Ruby

require 'formula'
class Aften < Formula
homepage 'http://aften.sourceforge.net/'
url 'https://downloads.sourceforge.net/aften/aften-0.0.8.tar.bz2'
sha1 '1ff73cdcade0624495ad807492cecf14862fb61c'
depends_on 'cmake' => :build
def install
mkdir 'default' do
system "cmake", "-DSHARED=ON", "..", *std_cmake_args
system "make install"
end
end
end