mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-26 21:50:11 +00:00
36 lines
917 B
Bash
36 lines
917 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/chrisstaite/lameenc
|
|
TERMUX_PKG_DESCRIPTION="Python bindings around the LAME encoder"
|
|
TERMUX_PKG_LICENSE="GPL-3.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.4.2
|
|
TERMUX_PKG_SRCURL=https://github.com/chrisstaite/lameenc/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=a4798f088eb58be929ecf23b9a5e25fafc55a9c1b96550b7074a72cdf80cd3b8
|
|
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
|
|
}
|