# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

#E_PKG_IUSE="nls"
#EFL_USE_GIT="yes"
#EFL_GIT_REPO_CATEGORY="enlightenment"
#EFL_GIT_REPO_NAME="enlightenment-module-places"
EGIT_REPO_URI="https://git.enlightenment.org/enlightenment/enlightenment-module-places"
inherit meson optfeature xdg git-r3

DESCRIPTION="E17 Module that manage the mounting of volumes"

DEPEND="x11-wm/enlightenment"

RDEPEND="${DEPEND}"

SLOT='0'

src_compile() {
	meson build
	cd build
	ninja
}

src_install() {
	cd build
	DESTDIR=${D} ninja install
}