# dvdrtools 0.2.1
# ===============
# dvdrtools is a fork of cdrtools. Some of the cdrtools utils will be
# replaced, others will be added (like dvdrecord). Because the replaced
# utils will be based on an older version of cdrtools, you may want to
# (re-)install it after you're done with this howto.
cd
test -f installed/dvdrtools-0.2.1.tar.bz2 &&
mv installed/dvdrtools-0.2.1.tar.bz2 .
test ! -f dvdrtools-0.2.1.tar.bz2 &&
wget http://savannah.nongnu.org/download/dvdrtools/dvdrtools-0.2.1.tar.bz2
# Verify tarball w/ md5sum:
# (this came from my gpg-verified tarball)
echo "c279e10a821f58d9de37275f8b88deff dvdrtools-0.2.1.tar.bz2" | md5sum -c
# Verify tarball w/ sha1sum:
# (this also came from my gpg-verified tarball)
echo "be6d187ec701ecce013fbd67b083ba81ba22516d dvdrtools-0.2.1.tar.bz2" | \
sha1sum -c
mkdir -p -m 0700 src
cd src
test -d ./dvdrtools && rm -r ./dvdrtools
find -maxdepth 1 -type d -name "dvdrtools-*" -exec rm -r {} \;
tar xjvf ~/dvdrtools-0.2.1.tar.bz2
cd dvdrtools-0.2.1
test $UID = 0 && chown -R root:root .
./configure --prefix=/usr
make
su -c "make install"
cd
mkdir -p -m 0700 installed
rm -f installed/dvdrtools.README installed/dvdrtools-*.tar.*
mv dvdrtools-0.2.1.tar.bz2 installed/
# If you ever need to uninstall dvdrtools for some reason, cd into the
# source directory and run 'make uninstall' (then remove that dir and the
# tarball)