AAlib: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
Oppiz (talk | contribs)
No edit summary
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{| style="text-align: left; background-color: AliceBlue;"
{| style="text-align: left; background-color: AliceBlue;"
|-
|-valign="top"
!Download Source:
!Download Source:
| url
| http://downloads.sourceforge.net/aa-project/aalib-{{AAlib-Version}}.tar.gz
|}
|}


----
----
{{Package-Introduction|AAlib is an portable ascii art GFX library.|http://aa-project.sourceforge.net/aalib/}}


== Dependencies ==
== Dependencies ==
Line 31: Line 33:
Compile the package:
Compile the package:


  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
  CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
  make
  make


Line 43: Line 46:
Compile the package:
Compile the package:


  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
  CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
  make
  make


Line 55: Line 59:
Compile the package:
Compile the package:


  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
  CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
  make
  make


Line 63: Line 68:
  mv -v /usr/bin/aalib-config{,-64} &&
  mv -v /usr/bin/aalib-config{,-64} &&
  ln -sfv multiarch_wrapper /usr/bin/aalib-config
  ln -sfv multiarch_wrapper /usr/bin/aalib-config
= Contents =
{| style="text-align: left;"
|-valign="top"
! Installed Programs:
| aafire, aainfo, aalib-config, aasavefont, and aatest
|-valign="top"
! Installed Libraries:
| libaa.{so,a}
|-valign="top"
! Installed Directories:
| None
|}
=== Short Descriptions ===
{| style="text-align: left;"
|-valign="top"
! aafire
| is little toy of AAlib, rendering an animated fire in ASCII Art.
|-valign="top"
! aainfo
| provides information for your current settings related to AAlib.
|-valign="top"
! aalib-config
| provides configuration info for AAlib.
|-valign="top"
! aatest
| shows the abilities of AAlib in a little test.
|-valign="top"
! libaa.{so,a}
| is a collection of routines to render any graphical input in portable format to ASCII Art. It can be used through many programs and has a very well documented API, so you can easily put it into your own programs.
|}
[[Category:Graphics Libraries]]

Latest revision as of 16:41, 20 September 2009

Download Source: http://downloads.sourceforge.net/aa-project/aalib-1.4rc5.tar.gz

Introduction to AAlib

AAlib is an portable ascii art GFX library.

Project Homepage: http://aa-project.sourceforge.net/aalib/

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make

Install the package

make install &&
mv -v /usr/bin/aalib-config{,-32}

N32

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/aalib-config{,-n32}

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/aalib-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/aalib-config

Contents

Installed Programs: aafire, aainfo, aalib-config, aasavefont, and aatest
Installed Libraries: libaa.{so,a}
Installed Directories: None

Short Descriptions

aafire is little toy of AAlib, rendering an animated fire in ASCII Art.
aainfo provides information for your current settings related to AAlib.
aalib-config provides configuration info for AAlib.
aatest shows the abilities of AAlib in a little test.
libaa.{so,a} is a collection of routines to render any graphical input in portable format to ASCII Art. It can be used through many programs and has a very well documented API, so you can easily put it into your own programs.
Retrieved from "?title=AAlib&oldid=19304"