blob: 8be24bfd1b04136a2b322e2e5e91919e6194c220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Cmocka < Formula
homepage 'http://cmocka.cryptomilk.org/'
url 'https://open.cryptomilk.org/attachments/download/42/cmocka-0.4.1.tar.xz'
sha1 'ef8b64878edc5f0e442dc6aaf3dc83ef912c51c2'
depends_on 'cmake' => :build
def install
mkdir 'build' do
system "cmake", "..", "-DUNIT_TESTING=On", *std_cmake_args
system "make"
system "make install"
end
end
end
|