66a0592b2b
Remove unrecognized configure_args.
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# Template file for 'qxmpp'
|
|
pkgname=qxmpp
|
|
version=1.3.0
|
|
revision=1
|
|
build_style=cmake
|
|
configure_args="-DBUILD_EXAMPLES=false"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="qt5-devel opus-devel speex-devel libtheora-devel libvpx-devel"
|
|
short_desc="Cross-platform C++ XMPP client and server library"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="LGPL-2.1"
|
|
homepage="https://github.com/qxmpp-project/qxmpp/"
|
|
distfiles="https://github.com/qxmpp-project/qxmpp/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=3c83d7cb3e790afd62a5232956ca85378aa76b6e1d1875c921ead05b70bb0fa5
|
|
|
|
build_options="opus speex theora vpx"
|
|
build_options_default="opus speex theora vpx"
|
|
desc_option_opus="Enable Opus audio codec"
|
|
desc_option_speex="Enable Speex audio codec"
|
|
desc_option_theora="Enable Theora video codec"
|
|
|
|
if [ -z "$XBPS_CHECK_PKGS" ]; then
|
|
configure_args+=" -DBUILD_TESTS=false"
|
|
else
|
|
configure_args+=" -DBUILD_TESTS=true"
|
|
fi
|
|
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-host-tools qt5-devel"
|
|
fi
|
|
|
|
qxmpp-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/cmake
|
|
}
|
|
}
|