This repository has been archived on 2024-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
2013-10-16 11:35:08 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
|
|
|
|
builddir=`pwd`
|
|
|
|
mkdir -p $builddir/m4
|
|
|
|
|
|
|
|
cd $srcdir
|
2013-12-16 11:45:44 +00:00
|
|
|
|
2013-10-23 08:58:06 +00:00
|
|
|
gtkdocize --copy &&
|
|
|
|
autoreconf -fi &&
|
|
|
|
glib-gettextize --copy --force &&
|
|
|
|
intltoolize --copy --force --automake
|
|
|
|
|
2013-12-16 11:45:44 +00:00
|
|
|
exit $?
|