Difference between revisions of "GStreamer"

From CBLFS
Jump to navigationJump to search
(Multilib)
Line 55: Line 55:
 
Install the package:
 
Install the package:
  
  make install
+
  make install &&
 +
for prog in /usr/bin/gst-{feedback,inspect,launch,typefind,xmlinspect,xmllaunch}{,-0.10}
 +
do
 +
  mv -v $prog{,-32}
 +
done
  
 
=== N32 ===
 
=== N32 ===
Line 67: Line 71:
 
Install the package:
 
Install the package:
  
  make install
+
  make install &&
 +
for prog in /usr/bin/gst-{feedback,inspect,launch,typefind,xmlinspect,xmllaunch}{,-0.10}
 +
do
 +
  mv -v $prog{,-n32}
 +
done
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 80: Line 88:
  
 
  make install &&
 
  make install &&
 +
for prog in /usr/bin/gst-{feedback,inspect,launch,typefind,xmlinspect,xmllaunch}{,-0.10}
 +
do
 +
  mv -v $prog{,-32}
 +
  ln -sfv multiarch_wrapper $prog
 +
done &&
 
  install -v -m755 -d /usr/share/doc/gstreamer-0.10/design &&
 
  install -v -m755 -d /usr/share/doc/gstreamer-0.10/design &&
 
  install -v -m644 docs/design/*.txt \
 
  install -v -m644 docs/design/*.txt \

Revision as of 14:21, 8 October 2006

Download Source: http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.10.tar.bz2

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 &&
for prog in /usr/bin/gst-{feedback,inspect,launch,typefind,xmlinspect,xmllaunch}{,-0.10}
do
  mv -v $prog{,-32}
done

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 &&
for prog in /usr/bin/gst-{feedback,inspect,launch,typefind,xmlinspect,xmllaunch}{,-0.10}
do
  mv -v $prog{,-n32}
done

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 &&
for prog in /usr/bin/gst-{feedback,inspect,launch,typefind,xmlinspect,xmllaunch}{,-0.10}
do
  mv -v $prog{,-32}
  ln -sfv multiarch_wrapper $prog
done &&
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