1

I downloaded TGICL-2.1.tar.gz file from sourcforge.

and I extract the file. Then I want to install TGICL but I don't know how to do.

Someone please help me.

Rinzwind
  • 293,910
  • 41
  • 570
  • 710
Asiye
  • 11
  • 2

1 Answers1

0
  1. Extract the archive

    tar xf TGICL-2.1.tar.gz
    cd TGICL-2.1
    
  2. Build

    ./Build.PL
    ./Build
    
  3. Test

    ./Build test
    

    Sample output

    t/00-load.t .. Use of :locked is deprecated at /home/aboettger/Downloads/TGICL-2.1/blib/lib/TGI/DBDrv.pm line 36.
    t/00-load.t .. 1/6 # Testing TGI::Util 0.01, Perl 5.020002, /usr/bin/perl
    t/00-load.t .. ok   
    All tests successful.
    Files=1, Tests=6,  1 wallclock secs ( 0.02 usr  0.01 sys +  0.04 cusr  0.00 csys =  0.07 CPU)
    Result: PASS
    
  4. Install

    sudo ./Build install
    
A.B.
  • 89,123
  • 21
  • 245
  • 323