File: autogen.sh

package info (click to toggle)
gtklp 1.3.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,004 kB
  • sloc: ansic: 11,652; sh: 5,788; makefile: 36; sed: 16
file content (22 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

LANG=
LC_ALL=C
#LC_ALL=UTF-8
export LANG LC_ALL

echo Running libtoolize...
libtoolize --copy --force
echo Running gettextize...
#gettextize --copy -f --intl
gettextize --copy -f
echo Running aclocal...
aclocal -I m4 
echo Running autoheader...
autoheader --force
echo Running autoconf...
autoconf --force 
echo Running automake...
automake --add-missing --copy --include-deps --foreign --force-missing
echo "DON'T EVER CHANGE gettext.h"
echo Now run configure, make, make install.