void-packages/srcpkgs/qbittorrent/template
Juergen Buchmueller 6c34491f4a qbittorrent: use libtorrent-rasterbar-devel
A patch from OpenSUSE makes qbittorrent work with our system
libtorrent-rasterbar-1.1.1. Thanks @asergi!
2016-12-19 14:52:28 +01:00

34 lines
1.1 KiB
Bash

# Template file for 'qbittorrent'
pkgname=qbittorrent
version=3.3.10
revision=2
build_style=qmake
hostmakedepends="automake libtool pkg-config qt5-qmake qt5-tools
qt5-host-tools qt5-declarative-devel"
makedepends="libtorrent-rasterbar-devel qt5-declarative-devel"
short_desc="Free software alternative to µtorrent"
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
license="GPL-2"
homepage="http://www.qbittorrent.org/"
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
checksum=2c657ceacdc84033da044a0a9ecba7e0fdb35858324dc097546f989166f1a8d2
build_options="gui webui"
desc_option_gui="Enable the graphical user interface"
desc_option_webui="Enable the web user interface"
build_options_default="gui"
pre_configure() {
local _args
_args="--prefix=/usr"
_args+=" --with-qt4=no"
_args+=" --disable-systemd"
if [ -n "$CROSS_BUILD" ]; then
_args+=" --host=${XBPS_CROSS_TRIPLET}"
_args+=" --with-boost=${XBPS_CROSS_BASE}/usr"
patch -p0 < ${FILESDIR}/cross-configure_ac.patch
export QT_QMAKE=/usr/bin/qmake-qt5
fi
./bootstrap.sh
./configure ${_args} $(vopt_enable gui) $(vopt_enable webui)
}