Difference between revisions of "Gpac"

From CBLFS
Jump to navigationJump to search
(Blanked the page)
 
Line 1: Line 1:
 +
{| style="text-align: left; background-color: AliceBlue;"
 +
|-
 +
!Download Source:
 +
| http://downloads.sourceforge.net/gpac/gpac-{{Gpac-Version}}.tar.gz
 +
|}
 +
----
  
 +
{{Package-Introduction|GPAC is an Open Source multimedia framework for research and academic purposes in different aspects of multimedia, with a focus on presentation technologies (graphics, animation and interactivity). |http://gpac.sourceforge.net/index.php}}
 +
 +
----
 +
 +
== Dependencies ==
 +
 +
=== Required ===
 +
* [[which]]
 +
=== Recommended ===
 +
* [[ALSA]]
 +
* [[libogg]]
 +
* [[libvorbis]]
 +
* [[Theora]]
 +
* [[which]]
 +
* [[libpng]]
 +
* [[X Window System]]
 +
* [[libjpeg]]
 +
* [[FreeType]]
 +
* [[WxWidgets]]
 +
 +
=== Optional ===
 +
* [[OpenSSL]]
 +
* [[OpenJPEG]]
 +
* [[Libmad]]
 +
* [[FAAD2]]
 +
* [[XviD]]
 +
* [[SDL]]
 +
* [[JACK]]
 +
* [[OpenGL]]
 +
* [[TinyGL]]
 +
* [[Mozilla]]
 +
* [[Renoir]]
 +
* [[DVB]]
 +
* [[XMLPRC]]
 +
* [[MP4Box]]
 +
* [[AMRNB]]
 +
* [[AMRWB]]
 +
* [[SpiderMonkey]]
 +
 +
== Non-Multilib ==
 +
 +
Compile the package:
 +
 +
chmod +x configure &&
 +
./configure --prefix=/usr --X11-path="${XORG_PREFIX}" &&
 +
make
 +
 +
Install the package:
 +
 +
make install
 +
 +
== Multilib ==
 +
 +
=== 32Bit ===
 +
 +
Compile the package:
 +
 +
chmod +x configure &&
 +
USE_ARCH=32 ./configure --prefix=/usr --X11-path="${XORG_PREFIX}" \
 +
    --cc="gcc ${BUILD32}" --extra-cflags="${BUILD32}" \
 +
    --cpu="$(cut -d- -f1 <<< ${CLFS_TARGET32})" &&
 +
make
 +
 +
Install the package:
 +
 +
make install
 +
 +
=== N32 ===
 +
 +
Todo
 +
 +
=== 64Bit ===
 +
 +
Compile the package:
 +
 +
chmod +x configure &&
 +
USE_ARCH=64 ./configure --prefix=/usr --X11-path="${XORG_PREFIX}" \
 +
    --cc="gcc ${BUILD64}" --extra-cflags="${BUILD64}" &&
 +
make
 +
 +
Install the package:
 +
 +
make install

Latest revision as of 16:01, 17 September 2009

Download Source: http://downloads.sourceforge.net/gpac/gpac-0.4.5.tar.gz

Introduction to Gpac

GPAC is an Open Source multimedia framework for research and academic purposes in different aspects of multimedia, with a focus on presentation technologies (graphics, animation and interactivity).

Project Homepage: http://gpac.sourceforge.net/index.php


Dependencies

Required

Recommended

Optional

Non-Multilib

Compile the package:

chmod +x configure &&
./configure --prefix=/usr --X11-path="${XORG_PREFIX}" &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

chmod +x configure &&
USE_ARCH=32 ./configure --prefix=/usr --X11-path="${XORG_PREFIX}" \
    --cc="gcc ${BUILD32}" --extra-cflags="${BUILD32}" \
    --cpu="$(cut -d- -f1 <<< ${CLFS_TARGET32})" &&
make

Install the package:

make install

N32

Todo

64Bit

Compile the package:

chmod +x configure &&
USE_ARCH=64 ./configure --prefix=/usr --X11-path="${XORG_PREFIX}" \
    --cc="gcc ${BUILD64}" --extra-cflags="${BUILD64}" &&
make

Install the package:

make install