blob: faa65aa4b694c350da1e6f5c579c62aa08017d04 (
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'
md5 'fde67146879febb81af3d95a62df8840'
depends_on 'cmake' => :build
def install
mkdir 'default' do
system "cmake #{std_cmake_parameters} -DSHARED=ON .."
system "make install"
end
end
end
|