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