aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aften.rb
blob: 3a817ca8ee7d31f59e83121b76f6d5f3b903c13b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Aften < Formula
  homepage 'http://aften.sourceforge.net/'
  url 'http://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