Difference between revisions of "Aria2"

From CBLFS
Jump to navigationJump to search
m (patch for build with gcc4.3)
m (Optional GNU Pth)
Line 15: Line 15:
  
 
=== Optional ===
 
=== Optional ===
 +
* [[GNU Pth]]
 
* [[GnuTLS]]
 
* [[GnuTLS]]
 
* [[OpenSSL]]
 
* [[OpenSSL]]
Line 23: Line 24:
  
 
{|style="text-align: left;"
 
{|style="text-align: left;"
 +
|-
 +
|<i>--enable-threads=pth</i> use GNU Pth library if installed.
 
|-
 
|-
 
|<i>--with-gnutls</i> use gnutls library if installed.
 
|<i>--with-gnutls</i> use gnutls library if installed.

Revision as of 05:35, 25 May 2008

Download Source: http://downloads.sourceforge.net/aria2/aria2c-1.8.0.tar.bz2
Required Patch: http://svn.cross-lfs.org/svn/repos/patches/aria2c/aria2c-1.8.0-gcc43_fix-1.patch

Introduction to Aria2

aria2 is a download utility with resuming and segmented downloading.

Project Homepage: http://aria2.sourceforge.net/

Dependencies

Optional

Configuration Information

--enable-threads=pth use GNU Pth library if installed.
--with-gnutls use gnutls library if installed.
--with-openssl use openssl library if installed.
--with-libxml2 use libxml2 library if installed.
--with-libares use ares library if installed.
--with-libcares use c-ares library if installed.

Non-Multilib

Compile the package:

patch -Np1 -i ../aria2c-1.8.0-gcc43_fix-1.patch &&
./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

This package does not provide any libraries so only one installation is required.

32Bit

Compile the package:

patch -Np1 -i ../aria2c-1.8.0-gcc43_fix-1.patch &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make

Install the package:

make install

N32

Compile the package:

patch -Np1 -i ../aria2c-1.8.0-gcc43_fix-1.patch &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package:

make install

64Bit

Compile the package:

patch -Np1 -i ../aria2c-1.8.0-gcc43_fix-1.patch &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install

Contents

Installed Programs: aria2c
Installed Libraries: None
Installed Directories: None

Short Descriptions

aria2c is a download utility with resuming and segmented downloading.