check - Unit test framework for C ChangeLog

HOWTO


# Check 0.9.5
# ===========
# Some things that use Check that I have howtos for are:
# gstreamer
# libxcb
# There is a list of others on the web site.

cd
test -f installed/check-0.9.5.tar.gz && mv installed/check-0.9.5.tar.gz .
test ! -f check-0.9.5.tar.gz &&
wget http://downloads.sf.net/check/check-0.9.5.tar.gz
mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "check-*" -exec rm -r {} \;
tar xzvf ~/check-0.9.5.tar.gz
cd check-0.9.5
test $UID = 0 && chown -R root:root .
./configure
make

# Become root to install it
su

# Remove old library files, install it
rm -f /usr/local/lib/libcheck.*
make install
ldconfig

# Make sure your non-root user can remove the source later
chown -R $USER .
chmod -R u+w .

# Become yourself again
exit

cd
mkdir -p -m 0700 installed
rm -f installed/check-*.tar.*
mv check-0.9.5.tar.gz installed/


# If you ever want to uninstall Check, this should do it:
cd
su
test -d src/check-* && ( cd src/check-* ; make uninstall )
rm -f /usr/local/lib/libcheck.* /usr/local/include/check.h \
/usr/local/share/aclocal/check.m4
find /usr/local/share/doc -maxdepth 1 -type d -name "check-*" \
-exec rm -r {} \;
ldconfig
exit
find ~/src -maxdepth 1 -type d -name "check-*" -exec rm -r {} \;
rm -f ~/installed/check-*.tar.*

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2008-04-17 9:11pm
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]