blob: 5696bf6c4e7a7f4e22132ae2897d6ac6757976c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Sdcv < Formula
homepage 'http://sdcv.sourceforge.net/'
url 'https://svn.code.sf.net/p/sdcv/code/trunk',
:using => UnsafeSubversionDownloadStrategy, :revision => '76'
version '0.5-2013-09-10'
depends_on 'pkg-config' => :build
depends_on 'cmake' => :build
depends_on 'gettext'
depends_on 'glib'
depends_on 'readline'
def install
mkdir 'build' do
system "cmake", "..", *std_cmake_args
system "make", "lang"
system "make", "install"
end
end
end
|