public
Description: will be a text classification desktop service
Homepage:
Clone URL: git://github.com/markoa/wordtip.git
wordtip / autogen.sh
100755 23 lines (18 sloc) 0.466 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
 
PROJECT=wordtip
 
topsrcdir=`dirname $0`
if test x$topsrcdir = x ; then
topsrcdir=.
fi
 
(test -f $topsrcdir/configure.ac \
  && test -f $topsrcdir/README \
  && test -d $topsrcdir/src) || {
    echo -n "**Error**: Directory "\`$topsrcdir\'" does not look like the"
    echo " top-level $PROJECT directory"
    exit 1
}
 
which gnome-autogen.sh || {
    echo "You need to install gnome-common"
    exit 1
}
REQUIRED_AUTOMAKE_VERSION=1.9 . gnome-autogen.sh