AI-LibNeural

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

    specified in Subsection 6a, above, for a charge no more
    than the cost of performing this distribution.

    c) If distribution of the work is made by offering access to copy
    from a designated place, offer equivalent access to copy the above
    specified materials from the same place.

    d) Verify that the user has already received a copy of these
    materials or that you have already sent this user a copy.

  For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it.  However, as a special exception,
the source code distributed need not include anything that is normally
distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.

  It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally

LICENSE  view on Meta::CPAN

    where to find the accompanying uncombined form of the same work.

  8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License.  Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License.  However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.

  9. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Library or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.

  10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the

Makefile.PL  view on Meta::CPAN


use ExtUtils::MakeMaker;

WriteMakefile(
	'NAME'		=> 'AI::LibNeural',
	'VERSION_FROM'	=> 'LibNeural.pm',
	'ABSTRACT_FROM'	=> 'LibNeural.pm',
	'LIBS'		=> [ '-lneural' ],
	'TYPEMAPS'	=> [ './typemap' ],
	# this is going to be linked with a c++ lib so special magic is 
	# required. MakeMaker will complain that it doesn't know anything
	# about CC, and LD, but appearently it does
	'CC'		=> 'g++',
	'LD'		=> '$(CC)',
	'XSOPT'		=> '-C++',
);



( run in 0.381 second using v1.01-cache-2.11-cpan-0a6323c29d9 )