blob: 65e33223b291a81d017380fafa95a34f863ce9df (
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 '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
|