aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtess2.rb
blob: ec65ba1a7f9d84f43448e2529b0a28fd8446e7af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'formula'

class Libtess2 < Formula
  homepage 'https://code.google.com/p/libtess2/'
  url 'https://libtess2.googlecode.com/files/libtess2-1.0.zip'
  sha1 '53e968add78711c3eb5cdc0948d85c9bd1db2751'

  bottle do
    cellar :any
    revision 1
    sha1 "59ce0639c5fcf074d5b5e9e428e974cc6ddd3408" => :yosemite
    sha1 "4cd702f0b57ae52eb4e15c72877390b764f21a95" => :mavericks
    sha1 "ad22b0855070d3ba896589ce40218744ffd5ec2d" => :mountain_lion
  end

  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