Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mosuka committed Mar 10, 2024
0 parents commit ca9b985
Show file tree
Hide file tree
Showing 28 changed files with 6,484 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.csv filter=lfs diff=lfs merge=lfs -text
*.def filter=lfs diff=lfs merge=lfs -text
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The UniDic Consortium
30 changes: 30 additions & 0 deletions BSD
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Copyright (c) 2011-2013, The UniDic Consortium
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the
distribution.

* Neither the name of the UniDic Consortium nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4 changes: 4 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
unidic-mecab is copyrighted free software by the UniDic Consortium,
and is released under any of the GPL (see the file GPL), the LGPL (see
the file LGPL), or the BSD License (see the file BSD).

43 changes: 43 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
2013-01-26 Yasuharu DEN <[email protected]>

* ver. 2.1.2 release
Customized lex.csv for kana and accent information added

2012-12-12 Yasuharu DEN <[email protected]>

* ver. 2.1.1 release
Adjusted to MeCab-0.994

2011-02-27 Yasuharu DEN <[email protected]>

* ver. 2.1.0 release
New release based on UniDic2

2009-07-31 Yasuharu DEN <[email protected]>

* ver. 1.3.12 release
Some minor changes

2009-04-30 Yasuharu DEN <[email protected]>

* ver. 1.3.11 release
New POS tag `Ascii-Art' added

2008-07-15 Yasuharu DEN <[email protected]>

* ver. 1.3.9 release
Bug fix

2008-04-25 Yasuharu DEN <[email protected]>

* ver. 1.3.8 release
Goshu information added

2007-10-12 Yasuharu DEN <[email protected]>

* ver. 1.3.5 release
The conjugation system changed: Kihon -> Syusi/Rentai

2007-04-06 Yasuharu DEN <[email protected]>

* ver. 1.3.0 release
340 changes: 340 additions & 0 deletions GPL

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
see unidic-mecab.pdf
504 changes: 504 additions & 0 deletions LGPL

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dicdir = @DIC_DIR@
dic_DATA = @MECAB_PRE_DATA@ @MECAB_SYS_DATA@ @MECAB_USER_DATA@
CLEANFILES = @MECAB_SYS_DATA@ @MECAB_USER_DATA@

@MECAB_SYS_DATA@: @MECAB_DIC@ @MECAB_DEF@
@MECAB_DICT_INDEX@ -d . -o . -f utf8 -t utf8

@MECAB_USER_DATA@: @USER_DIC@ @MODEL_FILE@
@MECAB_DICT_INDEX@ -d . -o . -f utf8 -t utf8 -m @MODEL_FILE@ -u $@ @USER_DIC@
26 changes: 26 additions & 0 deletions Makefile.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@echo off
REM
REM Makefile.bat for UniDic-mecab-2.1.1
REM
@echo Makefile.bat for UniDic-mecab-2.1.1

mkdir ..\dic\unidic
if errorlevel 1 goto ERROREXIT

@echo mecab-dict-index...
..\bin\mecab-dict-index -d . -o ..\dic\unidic -f utf8 -t utf8
if errorlevel 1 goto ERROREXIT

@echo installing...
copy dicrc ..\dic\unidic

@echo mecab dictionary compiled successfully.
goto LAST

:ERROREXIT
@echo cannot make mecab dictionary.
@echo installation halted.
pause

:LAST
@echo on
Loading

0 comments on commit ca9b985

Please sign in to comment.