libiec61883 - API for streaming DV, MPEG-2 and audio over Linux IEEE 1394 ChangeLog

HOWTO


# libiec61883 1.1.0
# =================
# Prerequisites:
# Linux kernel >= 2.4.20
# libraw1394 >= 1.2.0
# pkg-config

cd
test -f installed/libiec61883-1.1.0.tar.gz &&
mv installed/libiec61883-1.1.0.tar.gz .
test ! -f libiec61883-1.1.0.tar.gz &&
wget http://www.linux1394.org/dl/libiec61883-1.1.0.tar.gz

# Verify tarball w/ md5sum:
echo "08f46840912ae2032499186228842a32  libiec61883-1.1.0.tar.gz" | \
md5sum -c

mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "libiec61883-*" -exec rm -r {} \;
tar xzvf ~/libiec61883-1.1.0.tar.gz
cd libiec61883-1.1.0
test $UID = 0 && chown -R root:root .
chmod -R u+w .
./configure
make

# Become root to install it
su

rm -f /usr/local/lib/libiec61883.*
make install
ldconfig
chown -R $USER .

# Become yourself again
exit

cd
mkdir -p -m 0700 installed
rm -f installed/libiec61883-*.tar.*
mv libiec61883-1.1.0.tar.gz installed/


# If you ever want to uninstall libiec61883, this should do it:
cd
su
test -d src/libiec61883-* && ( cd src/libiec61883-* ; make uninstall )
( cd /usr/local/bin ; rm -f plugreport plugctl )
test -d /usr/local/include/libiec61883 &&
rm -r /usr/local/include/libiec61883
for mandir in /usr/local/man/man1 /usr/local/share/man/man1; do
  cd $mandir
  test -f plugreport.1 && rm -f plugreport.1
  test -f plugctl.1 && rm -f plugctl.1
done
rm -f /usr/local/lib/libiec61883.* /usr/local/lib/pkgconfig/libiec61883.pc
ldconfig
exit
find ~/src -maxdepth 1 -type d -name "libiec61883-*" -exec rm -r {} \;
rm -f ~/installed/libiec61883-*.tar.*

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2007-10-15 1:50pm
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]