app-crypt/moolticute: new package

This commit is contained in:
nemunaire 2017-05-19 14:05:00 +02:00
parent 2ca277cdc6
commit e1af9c9bfd
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST moolticute-0.7.0.tar.gz 4286792 SHA256 2b2fc5c6f241dd13c18a3d1b0ef2aaba4aa1a30828ddcaa9915a6702cb3401bb SHA512 983b613b7a3bb2490e23c892b88a05c506516707b1b6da766896c075a180a8d7a3b2dac69af701fddeaba2e38937d32aae100a13cfaf30656778b724b0990a22 WHIRLPOOL 4658a194bf16f652cec5bd66b33f8fb06240a343aefe9a94a1e4fc8cef0af0449fc57aa73c7b1576e27f965676e2773dcfa87e310358716cd781e175b04e0ff6
EBUILD moolticute-0.7.0.ebuild 832 SHA256 e2c105b6b493c6ebc7b258833e6d56efdc801c6bf4305166c2f236552060ce1d SHA512 a0881db6e9f43c886b70c720b8f84ae8b7cbd2aa31a89742f8f49a0593a9a36afda4a179cbf64266578a840f0dc504e0920ff1a8628bbfbd557d024da2b4a0e6 WHIRLPOOL 88340a3275bde9608ef5a1fdb7e254f834abbe373cf728e1b0124d9bdb142120a6f4d0d315c7ca2a497cd368791faf2130acaf466d5629527c44726552bc0361

View File

@ -0,0 +1,41 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
if [[ ${PV} == 9999* ]]; then
EGIT_REPO_URI="https://github.com/raoulh/moolticute.git"
inherit git-r3
KEYWORDS=""
S=${WORKDIR}/${P}/${PN}
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
virtual/libusb"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5 PREFIX="/usr" Moolticute.pro
}
src_install() {
emake install INSTALL_ROOT="${D}"
}