# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit meson udev xdg DESCRIPTION="Steering Wheel Manager for Linux" HOMEPAGE="https://github.com/berarma/oversteer" LICENSE="GPL-3" RESTRICT="mirror" SLOT="0" if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="${HOMEPAGE}.git" inherit git-r3 else SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~x86" fi DEPEND="dev-python/matplotlib dev-python/pyudev dev-python/pyxdg dev-python/scipy virtual/libudev dev-python/evdev" RDEPEND="${DEPEND}" src_install() { python -m compileall -o 0 -o 1 -f "oversteer" meson_src_install udev_dorules "data/udev/"* } pkg_postinst() { udev_reload } pkg_postrm() { udev_reload }