File: Makefile.PL

package info (click to toggle)
perlftlib 1.2-16
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 180 kB
  • ctags: 185
  • sloc: perl: 1,941; makefile: 104
file content (10 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'FreeType',
    'VERSION_FROM' => 'FreeType.pm', # finds $VERSION
    'LIBS'	=> ['-lttf'],   # e.g., '-lm' 
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '-I/usr/include/freetype',     # e.g., '-I/usr/include/other' 
);