File: autogen.sh

package info (click to toggle)
plotutils 2.4.1-11
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 11,676 kB
  • ctags: 6,967
  • sloc: ansic: 76,305; sh: 15,172; cpp: 12,403; yacc: 2,604; makefile: 888; lex: 144
file content (16 lines) | stat: -rw-r--r-- 393 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh -e
#
# Configuration build script: ggz-*
# build-depends: automake1.7, gettext, libtool, autoconf2.50
#
autogen () {
    aclocal
    grep -q ^AM_GNU_GETTEXT   configure.in && gettextize -c -f
    grep -q ^AM_PROG_LIBTOOL  configure.in && libtoolize -c -f --automake
    grep -q ^A._CONFIG_HEADER configure.in && autoheader -f
    automake -acf --foreign
    autoconf -f
}

autogen