mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 20:43:09 -04:00
Not needed anymore because the Makefile generated by qmake is discarded. Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
29 lines
657 B
Bash
29 lines
657 B
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit qmake-utils xdg
|
|
|
|
DESCRIPTION="Visual cross-platform gemini browser"
|
|
HOMEPAGE="https://github.com/MasterQ32/kristall"
|
|
SRC_URI="https://github.com/MasterQ32/${PN}/archive/V${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="dev-qt/qtmultimedia:5[widgets]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
# qmake overwrites Makefile but it is needed for installing.
|
|
mv Makefile{,.tmp} || die
|
|
eqmake5 src/kristall.pro
|
|
}
|
|
|
|
src_install() {
|
|
mv Makefile{.tmp,} || die
|
|
INSTALL="install -D" PREFIX="${EPREFIX}/usr" default
|
|
}
|