termux-packages/packages/gmic/build.sh
Leonid Pliushch 37375312b9
explicitly set maintainer for each package
In issue https://github.com/termux/termux-packages/issues/6160 I have found
that community repo "its-pointless.github.io" specifies us as maintainer
for its packages. This is NOT TRUE and potentially misleads people using
these packages.

Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral
and not specify maintainer. So all packages now have to override it to
the correct value.

[skip ci]
%ci:no-build
2020-12-20 15:16:34 +02:00

29 lines
883 B
Bash

TERMUX_PKG_HOMEPAGE=https://gmic.eu
TERMUX_PKG_DESCRIPTION="Full-featured framework for image processing"
TERMUX_PKG_LICENSE="CeCILL-2.1"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.9.4
TERMUX_PKG_SRCURL=https://gmic.eu/files/source/gmic_$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=790bee48f496765f6b59067dfb10dc34e1eb576caf9a95f30af0d567026eacc7
TERMUX_PKG_DEPENDS="libc++, libcurl, fftw, libpng, libjpeg-turbo, libtiff, zlib"
TERMUX_PKG_BUILD_DEPENDS="graphicsmagick"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_configure() {
return 0;
}
termux_step_make() {
cd src/
make USR="$TERMUX_PREFIX" STRIP="$STRIP" \
CFLAGS="$CXXFLAGS" LIBS="$LDFLAGS" cli
}
termux_step_make_install() {
cp src/gmic $TERMUX_PREFIX/bin/
cp src/gmic-gm $TERMUX_PREFIX/bin/
cp man/gmic.1.gz $TERMUX_PREFIX/share/man/man1/
cp man/gmic.1.gz $TERMUX_PREFIX/share/man/man1/gmic-gm.1.gz
}