30 lines
523 B
Bash
30 lines
523 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3 meson
|
|
|
|
DESCRIPTION="Building blocks for creating custom desktop shells"
|
|
HOMEPAGE=" aylur.github.io/astal/"
|
|
EGIT_REPO_URI="https://github.com/Aylur/astal.git"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
IUSE="+gjs +io +gtk4"
|
|
REQUIRED_USE=""
|
|
|
|
|
|
RDEPEND="
|
|
dev-libs/gobject-introspection
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${S}/lib/astal/io"
|
|
|
|
src_compile() {
|
|
for dir in ${IUSE[@]}; do
|
|
find -depth 2 -type d -name $dir .
|
|
}
|