termux-packages/packages/yajl/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

20 lines
667 B
Bash

TERMUX_PKG_HOMEPAGE=https://lloyd.github.io/yajl/
TERMUX_PKG_DESCRIPTION="Yet Another JSON Library"
TERMUX_PKG_LICENSE="ISC"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.1.0
TERMUX_PKG_REVISION=5
TERMUX_PKG_SRCURL=https://github.com/lloyd/yajl/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=3fb73364a5a30efe615046d07e6db9d09fd2b41c763c5f7d3bfb121cd5c5ac5a
TERMUX_PKG_BREAKS="yajl-dev"
TERMUX_PKG_REPLACES="yajl-dev"
TERMUX_PKG_FORCE_CMAKE=true
termux_step_post_make_install() {
# Fix location of 'yajl.pc'.
mkdir -p "${TERMUX_PREFIX}"/lib/pkgconfig
mv -f \
"${TERMUX_PREFIX}"/share/pkgconfig/yajl.pc \
"${TERMUX_PREFIX}"/lib/pkgconfig/yajl.pc
}