blob: 6d56776942b508bf07b9dad111a909f64d128cb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Freerdp < Formula
homepage 'http://www.freerdp.com/'
url 'https://github.com/FreeRDP/FreeRDP/tarball/1.0.0'
md5 '53b0a12c367b9b3a8dbe60e7fa0f88e9'
head 'https://github.com/FreeRDP/FreeRDP.git'
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end
|