mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-25 20:22:38 +00:00
xtkoba left the team, suhan-paradkar's account no longer exists. other non-maintainers were mentioned in buildscripts with `# Contributor:` comment as in Arch buildscripts [no ci]
25 lines
954 B
Bash
25 lines
954 B
Bash
# Contributor: @ian4hu
|
|
TERMUX_PKG_HOMEPAGE=https://github.com/phalcon/php-zephir-parser
|
|
TERMUX_PKG_DESCRIPTION="The Zephir Parser delivered as a C extension for the PHP language"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="ian4hu <hu2008yinxiang@163.com>"
|
|
TERMUX_PKG_VERSION="1.7.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/zephir-lang/php-zephir-parser/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=b947b267b8020a9390e1f7071a66c5a475fcde466c1aa28361e0f59120abe61c
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS=php
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_HOSTBUILD=true
|
|
|
|
termux_step_pre_configure() {
|
|
# copy host build `lemon`
|
|
cp "$TERMUX_PKG_HOSTBUILD_DIR/lemon" $TERMUX_PKG_SRCDIR/parser/
|
|
$TERMUX_PREFIX/bin/phpize
|
|
}
|
|
|
|
termux_step_host_build() {
|
|
# lemon excuted by build host, so we need build it by hostbuild, then it will be reused by later build
|
|
gcc -o "$TERMUX_PKG_HOSTBUILD_DIR/lemon" $TERMUX_PKG_SRCDIR/parser/lemon.c
|
|
|
|
}
|