mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
13 lines
255 B
Bash
Executable File
13 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
aclocal || exit 1
|
|
autoheader || exit 1
|
|
glib-gettextize -f -c || exit 1
|
|
gtkdocize --copy || exit 1
|
|
intltoolize -c -f || exit 1
|
|
libtoolize -c || exit 1
|
|
autoconf || exit 1
|
|
automake -a -c || exit 1
|
|
if test -z "$NOCONFIGURE"; then
|
|
./configure $*
|
|
fi
|