# gnome-spell 1.0.7
# =================
# Slackware doesn't appear to have a package for this (8.1, 9.0, 9.1, 10.0,
# or 10.1), and Slackware 10.2 and up doesn't include Gnome at all.
mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "gnome-spell-*" -exec rm -r {} \;
tar xjvf ~/gnome-spell-1.0.7.tar.bz2
cd gnome-spell-1.0.7
test $UID = 0 && chown -R root:root .
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
## If make fails with an error like this:
# /usr/lib/gcc/i686-pc-linux-gnu/4.0.3/../../../../i686-pc-linux-gnu/bin/ld:
# cannot find -lssl
## re-run it like this:
# make LDFLAGS=-L/usr/local/ssl/lib
make
# Become root to install it
su
make install
# I live in the US and only read/write English (well), so I don't need these
find /usr/share/locale -type f -name "gnome-spell-*.mo" -exec rm {} \;