Created
June 18, 2012 03:34
-
-
Save papaeye/2946715 to your computer and use it in GitHub Desktop.
A formula for C/Migemo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Cmigemo < Formula | |
homepage 'http://www.kaoriya.net/software/cmigemo' | |
url 'http://cmigemo.googlecode.com/files/cmigemo-default-src-20110227.zip' | |
sha1 '25e279c56d3a8f1e82cbfb3526d1b38742d1d66c' | |
depends_on 'nkf' => :build | |
# Patch per discussion at: https://github.com/mxcl/homebrew/pull/7005 | |
def patches | |
DATA | |
end | |
def install | |
ENV.j1 | |
chmod 0755, 'configure' | |
system "./configure", "--prefix=#{prefix}" | |
system "make osx" | |
system "make osx-dict" | |
cd 'dict' do | |
system "make utf-8" | |
end | |
system "make osx-install" | |
system "install_name_tool -change libmigemo.1.dylib #{prefix}/lib/libmigemo.1.dylib #{prefix}/bin/cmigemo" | |
end | |
def caveats; <<-EOS.undent | |
See also https://gist.github.com/457761 to use cmigemo with Emacs. | |
You will have to save as migemo.el and put it in your load-path. | |
EOS | |
end | |
end | |
__END__ | |
--- a/src/wordbuf.c 2011-08-15 02:57:05.000000000 +0900 | |
+++ b/src/wordbuf.c 2011-08-15 02:57:17.000000000 +0900 | |
@@ -9,6 +9,7 @@ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
+#include <limits.h> | |
#include "wordbuf.h" | |
#define WORDLEN_DEF 64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Homebrew/legacy-homebrew#4113 + Homebrew/legacy-homebrew#7005 + Homebrew/legacy-homebrew@864aae5