app-crypt/moolticute: requires libusb-1.0.20

This commit is contained in:
nemunaire 2017-07-12 11:01:30 +02:00
commit 949434dec2
3 changed files with 45 additions and 5 deletions

View file

@ -0,0 +1,40 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/raoulh/moolticute.git"
inherit git-r3
KEYWORDS=""
S=${WORKDIR}/${P}
else
SRC_URI="https://github.com/raoulh/moolticute/archive/v${PV}-beta.tar.gz -> moolticute-${PV}.tar.gz"
KEYWORDS="~amd64 ~arm"
S=${WORKDIR}/${P}-beta
fi
inherit qmake-utils
DESCRIPTION="Mooltipass crossplatform daemon/tools "
HOMEPAGE="https://github.com/raoulh/moolticute"
LICENSE="CLOSED"
SLOT="0"
IUSE=""
RDEPEND=">=dev-qt/qtcore-5.6
dev-qt/qtwidgets
dev-qt/qtgui
dev-qt/qtnetwork
dev-qt/qtwebsockets
>=dev-libs/libusb-1.0.20"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5 PREFIX="/usr" Moolticute.pro
}
src_install() {
emake install INSTALL_ROOT="${D}"
}