2006-10-12 02:36:34 +02:00
|
|
|
#!/usr/bin/env bash
|
2006-10-11 13:46:03 +02:00
|
|
|
echo "[encoding: UTF-8]" > po/POTFILES.in \
|
2006-10-12 02:36:34 +02:00
|
|
|
&& ls -1 -U data/gajim.desktop.in.in data/glade/*.glade \
|
|
|
|
src/*py src/common/*py src/common/zeroconf/*.py >> \
|
2006-10-11 13:46:03 +02:00
|
|
|
po/POTFILES.in || exit 1
|
2006-10-15 12:32:17 +02:00
|
|
|
if test -z `which pkg-config 2>/dev/null`;then
|
|
|
|
echo "***Error: pkg-config not found***"
|
|
|
|
echo "See README.html for build requirements."
|
|
|
|
exit 1
|
|
|
|
fi
|
2006-10-11 14:37:08 +02:00
|
|
|
set -x
|
2006-10-05 17:44:08 +02:00
|
|
|
intltoolize --force --automake \
|
|
|
|
&& aclocal -I ./m4 \
|
|
|
|
&& libtoolize --copy --force --automake \
|
2006-10-05 17:08:07 +02:00
|
|
|
&& autoheader \
|
2006-10-11 19:40:56 +02:00
|
|
|
&& autoconf \
|
2006-10-05 17:44:08 +02:00
|
|
|
&& automake --add-missing --gnu --copy \
|
2006-10-05 17:08:07 +02:00
|
|
|
&& ./configure $@
|