mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
de33bc015b
Revbump some python packages after python 3.12 (#18078).
38 lines
970 B
Bash
38 lines
970 B
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.7.0"
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/chrisstaite/lameenc/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=0255d5bf4f777f4e17cd4b1d862dcec82a9023d720bdedee20b3106f9d3d25f3
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libmp3lame, python"
|
|
TERMUX_PKG_PYTHON_COMMON_DEPS="wheel"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_pre_configure() {
|
|
rm -rf build dist
|
|
}
|
|
|
|
termux_step_configure() {
|
|
:
|
|
}
|
|
|
|
termux_step_make() {
|
|
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
|
|
}
|