• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

mecab/H05-Dec-2015-10,5996,741

packages/H05-Dec-2015-137103

.gitignoreH A D05-Dec-2015617 6356

ChangeLog.mdH A D05-Dec-2015584 1513

README.mdH A D05-Dec-20151.5 KiB4232

README.md

1php-mecab: MeCab binding for PHP
2================================
3
4
5INSTALL
6-------
7
8To compile your new extension, you will have to execute the following steps:
9
101. `phpize`
112. `./configure`
12    * You cah specify mecab `--with-mecab=/path/to/mecab-config`.
13    * For developers: `CFLAGS="-Wall -Wextra -Wno-unused-parameter" ./configure`
143. `make`
154. `make test`
165. `[sudo] make install`
17
18
19LICENSE
20-------
21```
22Copyright (c) 2006-2015 Ryusuke SEKIYAMA. All rights reserved.
23
24Permission is hereby granted, free of charge, to any person obtaining a
25copy of this software and associated documentation files (the "Software"),
26to deal in the Software without restriction, including without limitation
27the rights to use, copy, modify, merge, publish, distribute, sublicense,
28and/or sell copies of the Software, and to permit persons to whom the
29Software is furnished to do so, subject to the following conditions:
30
31The above copyright notice and this permission notice shall be included
32in all copies or substantial portions of the Software.
33
34THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
35OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
37THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
38LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
40DEALINGS IN THE SOFTWARE.
41```
42