mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-19 16:52:16 +00:00
de27f9b0f7
Termux hasn't packaged autogen yet. Use touch as an alternative. This change will not do any change to this library, so [skip ci]
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=http://www.mega-nerd.com/libsndfile
|
|
TERMUX_PKG_DESCRIPTION="Library for reading/writing audio files"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.2.2"
|
|
TERMUX_PKG_SRCURL=https://github.com/libsndfile/libsndfile/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=ffe12ef8add3eaca876f04087734e6e8e029350082f3251f565fa9da55b52121
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libflac, libogg, libopus, libvorbis"
|
|
TERMUX_PKG_BREAKS="libsndfile-dev"
|
|
TERMUX_PKG_REPLACES="libsndfile-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-sqlite
|
|
--disable-alsa
|
|
--disable-mpeg
|
|
"
|
|
TERMUX_PKG_RM_AFTER_INSTALL="bin/ share/man/man1/"
|
|
|
|
termux_step_post_get_source() {
|
|
rm -f CMakeLists.txt
|
|
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=1
|
|
|
|
local a
|
|
for a in LT_CURRENT LT_AGE; do
|
|
local _${a}=$(sed -En 's/^m4_define\(\['"${a,,}"'\],\s*\[([0-9]+)\].*/\1/p' \
|
|
configure.ac)
|
|
done
|
|
local v=$(( _LT_CURRENT - _LT_AGE ))
|
|
if [ ! "${_LT_CURRENT}" ] || [ "${v}" != "${_SOVERSION}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
autoreconf -fi
|
|
}
|