mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
Turns out that the liks that were used were incorrectly generated packages (autogenerated by github, without pulling in submodules) This has since been fixed by upstream including a note to not download the incorrectly tagged tar.gz packages Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
39 lines
703 B
Bash
39 lines
703 B
Bash
# Copyright 2019-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="A library for managing configuration files, written for wayfire"
|
|
HOMEPAGE="https://github.com/WayfireWM/wf-config"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
|
|
KEYWORDS=""
|
|
else
|
|
SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
DEPEND="
|
|
dev-libs/libevdev
|
|
media-libs/glm
|
|
dev-libs/libxml2
|
|
>=gui-libs/wlroots-0.10.0
|
|
"
|
|
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
|
|
BDEPEND="
|
|
${DEPEND}
|
|
virtual/pkgconfig
|
|
dev-libs/wayland-protocols
|
|
"
|