File: autogen.sh

package info (click to toggle)
gajim 0.11.4-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 14,944 kB
  • ctags: 3,925
  • sloc: python: 40,813; sh: 8,960; ansic: 711; xml: 364; makefile: 232
file content (18 lines) | stat: -rwxr-xr-x 572 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
  echo "[encoding: UTF-8]" > po/POTFILES.in \
  && ls -1 -U data/gajim.desktop.in.in data/glade/*.glade \
  src/*py src/common/*py src/common/zeroconf/*.py >> \
  po/POTFILES.in || exit 1
  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
  set -x
  intltoolize --force --automake \
  && aclocal -I ./m4 \
  && libtoolize --copy --force --automake \
  && autoheader \
  && autoconf  \
  && automake --add-missing --gnu --copy \
  && ./configure $@