From ed47c1557915bb2472f6959e723cd76155312a98 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Mon, 6 Apr 2020 00:50:58 +0800 Subject: Add deduper (unfinished tool for finding image duplicates). --- deduper/libpuzzle/autogen.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 deduper/libpuzzle/autogen.sh (limited to 'deduper/libpuzzle/autogen.sh') diff --git a/deduper/libpuzzle/autogen.sh b/deduper/libpuzzle/autogen.sh new file mode 100755 index 0000000..4717fc4 --- /dev/null +++ b/deduper/libpuzzle/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +if [ -x "`which autoreconf 2>/dev/null`" ] ; then + exec autoreconf -ivf +fi + +if glibtoolize --version > /dev/null 2>&1; then + LIBTOOLIZE='glibtoolize' +else + LIBTOOLIZE='libtoolize' +fi + +$LIBTOOLIZE && \ +aclocal && \ +autoheader && \ +automake --add-missing --force-missing --include-deps && \ +autoconf -- cgit v1.2.3