0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-13 02:43:04 +00:00
Files
termux-packages/packages/python-lameenc/build.sh
Biswapriyo Nath a6eebd2d09 bump(main/python-lameenc): 1.8.1
* simple rebase of setup.py.patch file.
* fix metadata version with setuptools-scm.
2025-01-02 15:02:55 +05:30

40 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/chrisstaite/lameenc
TERMUX_PKG_DESCRIPTION="Python bindings around the LAME encoder"
TERMUX_PKG_LICENSE="LGPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.8.1"
TERMUX_PKG_SRCURL=https://github.com/chrisstaite/lameenc/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=3f1994d4b14680a186b6f2b92af4bff30b0e262d043774fe411ddf3481547750
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="libandroid-support, libmp3lame, python"
TERMUX_PKG_PYTHON_COMMON_DEPS="setuptools-scm, wheel"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
rm -rf build dist
}
termux_step_configure() {
:
}
termux_step_make() {
# Set version for setuptools_scm
export SETUPTOOLS_SCM_PRETEND_VERSION="${TERMUX_PKG_VERSION}"
python setup.py \
--libdir=$TERMUX_PREFIX/lib \
--incdir=$TERMUX_PREFIX/include/lame \
bdist_wheel
}
termux_step_make_install() {
local f
for f in dist/lameenc-${TERMUX_PKG_VERSION#*:}-*.whl; do
if [ -e "${f}" ]; then
pip install --force "${f}" --prefix $TERMUX_PREFIX
break
fi
done
}