Difference between revisions of "GStreamer"
From CBLFS
Jump to navigationJump to searchLine 42: | Line 42: | ||
chown -v -R root:root /usr/share/doc/gstreamer-0.10/*/html | chown -v -R root:root /usr/share/doc/gstreamer-0.10/*/html | ||
fi | fi | ||
+ | |||
== Multilib == | == Multilib == | ||
=== 32Bit === | === 32Bit === | ||
+ | Compile the package: | ||
+ | |||
+ | CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
+ | ./configure --prefix=/usr && | ||
+ | make | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install | ||
=== N32 === | === N32 === | ||
+ | Compile the package: | ||
+ | |||
+ | CC="gcc ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
+ | ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
+ | make | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install | ||
=== 64Bit === | === 64Bit === | ||
+ | |||
+ | Compile the package: | ||
+ | |||
+ | CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
+ | ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
+ | make | ||
+ | |||
+ | Install the package: | ||
+ | |||
+ | make install && | ||
+ | install -v -m755 -d /usr/share/doc/gstreamer-0.10/design && | ||
+ | install -v -m644 docs/design/*.txt \ | ||
+ | /usr/share/doc/gstreamer-0.10/design && | ||
+ | if [ -d /usr/share/doc/gstreamer-0.10/faq/html ]; then | ||
+ | chown -v -R root:root /usr/share/doc/gstreamer-0.10/*/html | ||
+ | fi |
Revision as of 13:18, 8 October 2006
Download Source: | http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.10.tar.bz2 |
---|
Contents
Dependencies
Required
Optional
Required to build the API Documentation
Required to build the manuals
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install && install -v -m755 -d /usr/share/doc/gstreamer-0.10/design && install -v -m644 docs/design/*.txt \ /usr/share/doc/gstreamer-0.10/design && if [ -d /usr/share/doc/gstreamer-0.10/faq/html ]; then chown -v -R root:root /usr/share/doc/gstreamer-0.10/*/html fi
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr && make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" USE_ARCH=n32 PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" USE_ARCH=64 PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package:
make install && install -v -m755 -d /usr/share/doc/gstreamer-0.10/design && install -v -m644 docs/design/*.txt \ /usr/share/doc/gstreamer-0.10/design && if [ -d /usr/share/doc/gstreamer-0.10/faq/html ]; then chown -v -R root:root /usr/share/doc/gstreamer-0.10/*/html fi