Difference between revisions of "XMLTVWindowsBuild"

From XMLTV
Jump to: navigation, search
Line 21: Line 21:
 
5. execute "perl Makefile.PL".  Look for the XMLTV utility you would like to use.  Is it already "yes" to include? If not, answer the questions and note the modules the Makefile.PL says you need to include.
 
5. execute "perl Makefile.PL".  Look for the XMLTV utility you would like to use.  Is it already "yes" to include? If not, answer the questions and note the modules the Makefile.PL says you need to include.
  
For a full install I needed these modules
+
6. I installed the prerequisites with these commands.  You only need to do the ones you need. ( I prefer ppm over CPAN )
   Date::Manip
+
   ppm install Date::Manip
   XML::DOM
+
   ppm install XML::DOM
   XML::Twig
+
   ppm install XML::Twig
   HTTP::Cache::Transparent
+
   ppm install Tk
   DateTime::Format::Strptime
+
  ppm install Tk::TableMatrix
   DateTime::Format::ISO8601
+
  cpan install HTTP::Cache::Transparent
   XML::Writer
+
   cpan install DateTime
  Tk
+
   cpan install DateTime::Format::ISO8601
  Tk::TableMatrix
+
   cpan install XML::Writer
  
 +
7. Execute 'dmake clean' and then 'perl Makefile.PL'  again... repeat step 6 until you're happy.
  
6.
+
8. Build XMLTV normally 'dmake'
 +
 
 +
9. You can test XMTLV if you wish 'dmake test', but I fail 2/5 programs, 26/125 subtests
 +
 
 +
10. Install to strawberry's bin folder with 'dmake install'  (it will fail, but important stuff is there)
 +
 
 +
11. *PROFIT*  (for example, CD to another directory and type tv_grab_na_dd --configure )
 +
 
 +
We should work on fixing the test and install parts of the Makefile for windows! :)

Revision as of 21:56, 14 June 2014

    • IN PROGRESS **

Historically, one of the trickier tasks for XMLTV has been installing Perl and all the necessary modules for Windows. The situation has been made much better with the release of the Windows XMLTV distribution that includes a prepackaged PERLApp executable called XMLTV.EXE.

There are times when folks would like to run native XMLTV or other Perl programs on Windows. This Page documents the process I followed to do it using Strawberry Perl.

Strawberry Perl is a perl environment for MS Windows containing all you need to run and develop perl applications. It is designed to be as close as possible to perl environment on UNIX systems.

Strawberry Perl is a Windows Perl distribution that includes a compiler (gcc) and other tools that allow you to install packages from CPAN just like you would on a Unix/Linux system.

WARNING: I don't recommend using any directories with spaces or other special characters in them!

1. Download/Install Strawberry Perl (I use c:\strawberry)

2. Drill down the XMLTV Sourceforge Distribution site and grab the latest non-Win32 XMLTV distribution (for example: xmltv-0.5.65.tar.bz2.

3. Extract tar.bz2 source tree to a local directory (I use c:\xmltv) . I use 7-Zip. Note, you may have do it twice (first unzip to .tar, then to folder.

4. Open a windows command prompt (cmd.exe) and CD to your XMLTV folder.

5. execute "perl Makefile.PL". Look for the XMLTV utility you would like to use. Is it already "yes" to include? If not, answer the questions and note the modules the Makefile.PL says you need to include.

6. I installed the prerequisites with these commands. You only need to do the ones you need. ( I prefer ppm over CPAN )

  ppm install Date::Manip
  ppm install XML::DOM
  ppm install XML::Twig
  ppm install Tk
  ppm install Tk::TableMatrix
  cpan install HTTP::Cache::Transparent
  cpan install DateTime
  cpan install DateTime::Format::ISO8601
  cpan install XML::Writer

7. Execute 'dmake clean' and then 'perl Makefile.PL' again... repeat step 6 until you're happy.

8. Build XMLTV normally 'dmake'

9. You can test XMTLV if you wish 'dmake test', but I fail 2/5 programs, 26/125 subtests

10. Install to strawberry's bin folder with 'dmake install' (it will fail, but important stuff is there)

11. *PROFIT* (for example, CD to another directory and type tv_grab_na_dd --configure )

We should work on fixing the test and install parts of the Makefile for windows! :)