blob: 85506afd5d41f7942cd8cc1450bf51dbef814a36 (
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
34
|
require "formula"
class Libmarisa < Formula
homepage "https://code.google.com/p/marisa-trie/"
url "https://marisa-trie.googlecode.com/files/marisa-0.2.4.tar.gz"
sha1 "fb0ed7d993e84dff32ec456a79bd36a00022629d"
def install
system "./configure", "--prefix=#{prefix}"
system "make", "check"
system "make", "install"
end
test do
(testpath/'test.cpp').write <<-EOS.undent
#include <marisa.h>
int main() {
marisa::Keyset keyset;
keyset.push_back("a");
keyset.push_back("app");
keyset.push_back("apple");
marisa::Trie trie;
trie.build(keyset);
marisa::Agent agent;
agent.set_query("apple");
return 0;
}
EOS
system ENV.cxx, "test.cpp", "-lmarisa", "-o", "test"
system "./test"
end
end
|