2011-11-29 15:31:22 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Uchardet < Formula
|
|
|
|
url 'http://uchardet.googlecode.com/files/uchardet-0.0.1.tar.gz'
|
|
|
|
homepage 'http://code.google.com/p/uchardet/'
|
|
|
|
md5 '9c17f0aca38c66c95d400691a9160b1b'
|
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
args = std_cmake_args
|
2011-11-29 15:31:22 +00:00
|
|
|
args << "-DCMAKE_INSTALL_NAME_DIR=#{lib}"
|
|
|
|
system "cmake", '.', *args
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-05 21:45:16 +00:00
|
|
|
system "#{bin}/uchardet", __FILE__
|
2011-11-29 15:31:22 +00:00
|
|
|
end
|
|
|
|
end
|