f995c581c2
Closes Homebrew/homebrew#19634. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
25 lines
756 B
Ruby
25 lines
756 B
Ruby
require 'formula'
|
|
|
|
class Libtess2 < Formula
|
|
homepage 'https://code.google.com/p/libtess2/'
|
|
url 'https://libtess2.googlecode.com/files/libtess2-1.0.zip'
|
|
sha1 '53e968add78711c3eb5cdc0948d85c9bd1db2751'
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
def install
|
|
# creating CMakeLists.txt, since the original source doesn't have one
|
|
(buildpath/"CMakeLists.txt").write <<-EOS.undent
|
|
cmake_minimum_required(VERSION 2.6)
|
|
project(libtess)
|
|
file(GLOB SRCS "Source/*.cpp" "Source/*.c" "Source/*.h" "Source/*.hpp")
|
|
include_directories("Include")
|
|
add_library(tess2 ${SRCS} ${SRCS_INCL})
|
|
EOS
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make"
|
|
lib.install "libtess2.a"
|
|
include.install "Include/tesselator.h"
|
|
end
|
|
end
|