mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-02-03 04:20:36 +01:00
10 lines
219 B
Bash
Executable file
10 lines
219 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
|
|
./configure $*
|