File: autogen.sh

package info (click to toggle)
libpaper 1.1.28
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 464 kB
  • sloc: ansic: 507; sh: 241; makefile: 141
file content (16 lines) | stat: -rwxr-xr-x 393 bytes parent folder | download | duplicates (9)
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.ac && gettextize -c -f
    grep -q ^AM_PROG_LIBTOOL  configure.ac && libtoolize -c -f --automake
    grep -q ^A._CONFIG_HEADER configure.ac && autoheader -f
    automake -acf --foreign
    autoconf -f
}

autogen