1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 07:57:08 +00:00
termux-packages/packages/libwren/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

39 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://wren.io/
TERMUX_PKG_DESCRIPTION="Small, fast, class-based concurrent scripting language libraries"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.3.0
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/wren-lang/wren/archive/$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=c566422b52a18693f57b15ae4c9459604e426ea64eddb5fbf2844d8781aa4eb7
TERMUX_PKG_BREAKS="wren-dev, wren (<< 0.3.0)"
TERMUX_PKG_REPLACES="wren-dev, wren (<< 0.3.0)"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_NO_STATICSPLIT=true
termux_step_make() {
local QUIET_BUILD=
if [ "$TERMUX_QUIET_BUILD" = true ]; then
QUIET_BUILD="-s"
fi
cd projects/make
if [ "$TERMUX_ARCH" = i686 ] || [ "$TERMUX_ARCH" = arm ]; then
RELEASE=release_32bit
else
RELEASE=release_64bit
fi
make -j $TERMUX_MAKE_PROCESSES $QUIET_BUILD config=${RELEASE}
}
termux_step_make_install() {
install -Dm600 "$TERMUX_PKG_SRCDIR"/src/include/wren.h \
"$TERMUX_PREFIX"/include/wren.h
install -Dm600 "$TERMUX_PKG_SRCDIR"/lib/libwren.so \
"$TERMUX_PREFIX"/lib/libwren.so
install -Dm600 "$TERMUX_PKG_SRCDIR"/lib/libwren.a \
"$TERMUX_PREFIX"/lib/libwren.a
}