diff --git a/MANIFEST b/MANIFEST index 3ad9a23..521ed5e 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,4 +1,5 @@ bin/peertube-dl +cpanfile LICENSE Makefile.PL MANIFEST This list of files diff --git a/README.md b/README.md index 80f1b72..17732de 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ animeflv.cc ## Installation +There is two alternative ways: + +### System install + ``` sudo apt install perl make libwww-perl liburi-encode-perl libjson-perl perl Makefile.PL @@ -21,6 +25,14 @@ make make install ``` +### Localized install with cpanminus. + +``` +sudo apt install cpanminus +cpanm . --installdeps +cpanm . +``` + ## Usage `peertube-dl ` diff --git a/cpanfile b/cpanfile new file mode 100644 index 0000000..14ce1d6 --- /dev/null +++ b/cpanfile @@ -0,0 +1,3 @@ +requires 'LWP::UserAgent'; +requires 'URI::Encode'; +requires 'JSON';