blob: 332e03c0b34f1b6053d908df918bac576dc77d2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
PATH=/bin:/usr/bin; export PATH
# Check if teTeX is installed.
if [ ! -f ${PREFIX}/share/texmf/doc/tetex/README ]; then
echo "-----------------------------------------"
echo "teTeX is not installed!"
echo "It's recommended to use CJK upon teTeX!"
echo "-----------------------------------------"
exit 1
# Juse grep for 1.0 is not a preferred method, but it seems there is no
# other way solving this.
elif [ -z "`head -1 ${PREFIX}/share/texmf/doc/tetex/README |grep 1\.0`" ]; then
echo "-------------------------------------------"
echo " You do not have teTeX-1.0 installed!"
echo " CJK 4.3.0 needs it to function properly."
echo "-------------------------------------------"
exit 1
fi
|