File: Makefile.PL

package info (click to toggle)
libmecab-perl 0.99.3-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 352 kB
  • sloc: cpp: 5,731; perl: 362; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'		=> 'MeCab',
    'CC'                => `mecab-config --cxx`,
    'LD'                => `mecab-config --cxx`,
    'INC'               => `mecab-config --cflags`,
    'LIBS'              => `mecab-config --libs`,
    'VERSION'	        => `mecab-config --version`,
    'OBJECT'            => 'MeCab_wrap.o' 
);