Welcome to mirror list, hosted at ThFree Co, Russian Federation.

autogen.sh - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 757dab7f2c87ec81fad5531488a3e7bb6037044a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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
  set -x
  intltoolize --force --automake \
  && aclocal -I ./m4 \
  && libtoolize --copy --force --automake \
  && autoheader \
  && autoconf  \
  && automake --add-missing --gnu --copy \
  && ./configure $@