45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://gitlab.com/opennota/findimagedupes
|
|
TERMUX_PKG_DESCRIPTION="Find visually similar or duplicate images"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=0bb9ce8d74fbfdee6cfc66073b6729ea9b89611d
|
|
TERMUX_PKG_VERSION=2022.02.23
|
|
TERMUX_PKG_SRCURL=https://gitlab.com/opennota/findimagedupes.git
|
|
TERMUX_PKG_GIT_BRANCH=master
|
|
TERMUX_PKG_DEPENDS="file, libc++, libheif, libjpeg-turbo, libpng, libtiff"
|
|
TERMUX_PKG_CONFLICTS="findimagedupes"
|
|
TERMUX_PKG_REPLACES="findimagedupes"
|
|
|
|
termux_step_post_get_source() {
|
|
git fetch --unshallow
|
|
git checkout $_COMMIT
|
|
|
|
local version="$(git log -1 --format=%cs | sed 's/-/./g')"
|
|
if [ "$version" != "$TERMUX_PKG_VERSION" ]; then
|
|
echo -n "ERROR: The specified version \"$TERMUX_PKG_VERSION\""
|
|
echo " is different from what is expected to be: \"$version\""
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
|
|
export GOPATH=$TERMUX_PKG_BUILDDIR
|
|
export CGO_CFLAGS+=" -I$TERMUX_PREFIX/include/libpng16 -D__GLIBC__"
|
|
export CGO_CXXFLAGS="$CGO_CFLAGS"
|
|
|
|
mkdir -p "$GOPATH"/src/gitlab.com/opennota
|
|
ln -sf "$TERMUX_PKG_SRCDIR" "$GOPATH"/src/gitlab.com/opennota/findimagedupes
|
|
|
|
cd "$GOPATH"/src/gitlab.com/opennota/findimagedupes
|
|
|
|
go build .
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 \
|
|
"$GOPATH"/src/gitlab.com/opennota/findimagedupes/findimagedupes \
|
|
"$TERMUX_PREFIX"/bin/findimagedupes
|
|
}
|