root/tags/gajim-0.11.4/autogen.sh

Revision 7248, 0.6 kB (checked in by dkirov, 2 years ago)

check for pkg-config in autogen.sh

  • Property svn:executable set to *
Line 
1 #!/usr/bin/env bash
2   echo "[encoding: UTF-8]" > po/POTFILES.in \
3   && ls -1 -U data/gajim.desktop.in.in data/glade/*.glade \
4   src/*py src/common/*py src/common/zeroconf/*.py >> \
5   po/POTFILES.in || exit 1
6   if test -z `which pkg-config 2>/dev/null`;then
7     echo "***Error: pkg-config not found***"
8         echo "See README.html for build requirements."
9         exit 1
10   fi
11   set -x
12   intltoolize --force --automake \
13   && aclocal -I ./m4 \
14   && libtoolize --copy --force --automake \
15   && autoheader \
16   && autoconf  \
17   && automake --add-missing --gnu --copy \
18   && ./configure $@
Note: See TracBrowser for help on using the browser.