Commit e4764d93 authored by Casey Strouse's avatar Casey Strouse

Update cmake to 3.7.2

This updates cmake from 3.6.1 to 3.7.2. The 3.7.2 release is a
bugfix/general maintenance release.

Tested as working on Samsung XE50013-K01US (x86_64).

99% tests passed, 3 tests failed out of 420
https://gist.github.com/cstrouse/5e304accfecfc53efc2ef78649ede2bb
parent bab9911b
require 'package'
class Cmake < Package
version '3.6.1'
source_url 'https://cmake.org/files/v3.6/cmake-3.6.1.tar.gz'
source_sha1 'a37785b3f256a31ee21a047569bc74a8f57067bb'
version '3.7.2'
source_url 'https://cmake.org/files/v3.7/cmake-3.7.2.tar.gz'
source_sha1 'ea73af0c3c832e586bf2f82a13a708ea509d5a88'
depends_on 'buildessential'
depends_on 'openssl'
depends_on 'ncurses'
def self.build
if Dir.exist? '/usr/local/include/ncursesw'
system 'sed -i "51s,$,\n set(CURSES_INCLUDE_PATH /usr/local/include/ncursesw)," Modules/FindCurses.cmake'
end
system "./bootstrap"
system "make"
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment