diff options
| author | Kouhei Sutou | 2013-03-28 12:26:09 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-14 20:13:54 -0700 |
| commit | 7ca55c1c36b995042463b6cbd0df8d682c7ccb6c (patch) | |
| tree | 285523d86944f1165711a410531ceba76efa646b /Library/Formula | |
| parent | 8664c3c4d1c704dcdeed7c8a016e1d423c988c9b (diff) | |
| download | homebrew-7ca55c1c36b995042463b6cbd0df8d682c7ccb6c.tar.bz2 | |
groonga-normalizer-mysql 1.0.1
Closes #18786.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/groonga-normalizer-mysql.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/groonga-normalizer-mysql.rb b/Library/Formula/groonga-normalizer-mysql.rb new file mode 100644 index 000000000..78886f044 --- /dev/null +++ b/Library/Formula/groonga-normalizer-mysql.rb @@ -0,0 +1,15 @@ +require 'formula' + +class GroongaNormalizerMysql < Formula + homepage 'https://github.com/groonga/groonga-normalizer-mysql' + url 'http://packages.groonga.org/source/groonga-normalizer-mysql/groonga-normalizer-mysql-1.0.1.tar.gz' + sha1 'ccd0bdefbf513e8f1c93dec975f97ab4ad715013' + + depends_on 'pkg-config' => :build + depends_on 'groonga' + + def install + system "./configure", "--prefix=#{prefix}" + system "make install" + end +end |
