termux-packages/packages/yajl/build.sh
Leonid Pliushch 9c9e7f65b8 update maintainer info
Specifying Termux org members is more correct as we don't have repo-specific
maintainers for termux-packages.

DEB control field specification doesn't allow to specify multiple people as
package maintainers. Value "Termux members @termux" will be used as default
for that field which can be overridden on per-package basis if needed.

%ci:no-build
2020-05-13 11:05:52 +03:00

19 lines
635 B
Bash

TERMUX_PKG_HOMEPAGE=https://lloyd.github.io/yajl/
TERMUX_PKG_DESCRIPTION="Yet Another JSON Library"
TERMUX_PKG_LICENSE="ISC"
TERMUX_PKG_VERSION=2.1.0
TERMUX_PKG_REVISION=4
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
}