forked from sergiotarxz/Peertube-dl
12 lines
331 B
Perl
12 lines
331 B
Perl
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
NAME => 'Peertube::DL::Javascript',
|
|
VERSION => '0.1',
|
|
LIBS => ['-lduktape -l../src'],
|
|
INC => '-Iduktape -I../src/include',
|
|
XS => { 'javascript.xs' => 'javascript.o' },
|
|
OBJECT => '../src/javascript_builtins.o javascript.o',
|
|
LDFLAGS => '-Wl-t',
|
|
);
|