homebrew-core/Formula/libtess2.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

32 lines
1 KiB
Ruby

class Libtess2 < Formula
desc "Refactored version of GLU tesselator"
homepage "https://code.google.com/p/libtess2/"
url "https://libtess2.googlecode.com/files/libtess2-1.0.zip"
sha256 "1938805e1859cbc4459797920743def39fd04154fe60da2ee3ee2198143b96bb"
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