homebrew-core/Formula/freeling.rb
2018-04-21 06:14:41 -07:00

94 lines
2.9 KiB
Ruby

class Freeling < Formula
desc "Suite of language analyzers"
homepage "http://nlp.lsi.upc.edu/freeling/"
url "https://github.com/TALP-UPC/FreeLing/releases/download/4.1/FreeLing-4.1.tar.gz"
sha256 "ccb3322db6851075c9419bb5e472aa6b2e32cc7e9fa01981cff49ea3b212247e"
bottle do
sha256 "4e458f9b0144a54786df878de4a3040e1cea6396616e5b4647b0d822e95dfcf5" => :high_sierra
sha256 "950011b0a3594fd822c4269a06c4570ac4d9e9f95aba39098eeb3c65caf77fda" => :sierra
sha256 "873d3820ac453abdd27bbdd3de92b1f8aa7d22ac224a4f9f37a0cbde0c576219" => :el_capitan
end
depends_on "cmake" => :build
depends_on "icu4c"
conflicts_with "hunspell", :because => "both install 'analyze' binary"
resource "boost" do
url "https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.bz2"
sha256 "2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba"
end
def install
resource("boost").stage do
# Force boost to compile with the desired compiler
open("user-config.jam", "a") do |file|
file.write "using darwin : : #{ENV.cxx} ;\n"
end
bootstrap_args = %W[
--without-icu
--prefix=#{libexec}/boost
--libdir=#{libexec}/boost/lib
--with-icu=#{Formula["icu4c"].opt_prefix}
--with-libraries=atomic,chrono,date_time,filesystem,program_options,regex,system,thread
]
args = %W[
--prefix=#{libexec}/boost
--libdir=#{libexec}/boost/lib
-d2
-j#{ENV.make_jobs}
--ignore-site-config
--layout=tagged
--user-config=user-config.jam
install
threading=multi
link=shared
optimization=space
variant=release
cxxflags=-std=c++11
]
if ENV.compiler == :clang
args << "cxxflags=-stdlib=libc++" << "linkflags=-stdlib=libc++"
end
system "./bootstrap.sh", *bootstrap_args
system "./b2", "headers"
system "./b2", *args
end
(libexec/"boost/lib").each_child do |dylib|
MachO::Tools.change_dylib_id(dylib.to_s, dylib.to_s)
end
%w[chrono filesystem thread].each do |library|
macho = MachO.open("#{libexec}/boost/lib/libboost_#{library}-mt.dylib")
macho.change_dylib("libboost_system-mt.dylib",
"#{libexec}/boost/lib/libboost_system-mt.dylib")
macho.write!
end
mkdir "build" do
system "cmake", "..", "-DBoost_INCLUDE_DIR=#{libexec}/boost/include",
"-DBoost_LIBRARY_DIR_RELEASE=#{libexec}/boost/lib",
*std_cmake_args
system "make", "install"
end
libexec.install "#{bin}/fl_initialize"
inreplace "#{bin}/analyze",
". $(cd $(dirname $0) && echo $PWD)/fl_initialize",
". #{libexec}/fl_initialize"
end
test do
expected = <<~EOS
Hello hello NN 1
world world NN 1
EOS
assert_equal expected, pipe_output("#{bin}/analyze -f #{pkgshare}/config/en.cfg", "Hello world").chomp
end
end