pentoo-overlay/media-libs/mbelib/mbelib-1.3.0-r1.ebuild
Yury Martynov c6a7f5be95
media-libs/mbelib: cmake-utils -> cmake
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Yury Martynov <email@linxon.ru>
2020-07-19 19:24:31 +03:00

38 lines
935 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake multilib
HOMEPAGE="https://github.com/szechyjs/mbelib"
DESCRIPTION="P25 Phase 1 and ProVoice vocoder"
if [[ ${PV} == *9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/szechyjs/mbelib.git"
else
COMMIT="9a04ed5c78176a9965f3d43f7aa1b1f5330e771f"
SRC_URI="https://github.com/szechyjs/mbelib/archive/9a04ed5c78176a9965f3d43f7aa1b1f5330e771f.tar.gz -> ${P}-r1.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD"
SLOT=0
IUSE="test"
src_prepare() {
sed -i -e '/TARGET_LINK_LIBRARIES(mbe-static m)/d' \
-e '/ADD_LIBRARY(mbe-static STATIC ${SRCS})/d' \
-e 's#mbe-static ##g' CMakeLists.txt || die
cmake_src_prepare
}
src_configure() {
mycmakeargs=(
CMAKE_INSTALL_LIBDIR="/usr/$(get_libdir)"
-DDISABLE_TEST="$(usex test OFF ON)"
)
cmake_src_configure
}