32 lines
660 B
Bash
32 lines
660 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="LXQt common resources"
|
|
HOMEPAGE="https://lxqt.org/"
|
|
|
|
SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="0"
|
|
|
|
DEPEND=">=lxqt-base/liblxqt-0.11.1"
|
|
RDEPEND="${DEPEND}"
|
|
PDEPEND=">=lxqt-base/lxqt-session-0.11.1"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DPULL_TRANSLATIONS=OFF
|
|
)
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
dodir "/etc/X11/Sessions"
|
|
dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt"
|
|
}
|