Files
guru/sys-apps/asus-numpad/asus-numpad-0.1.ebuild
Patrick Nicolas 1c284417dc sys-apps/asus-numpad: new package, add 0.1, 9999
Signed-off-by: Patrick Nicolas <patricknicolas@laposte.net>
2022-05-24 16:48:49 +02:00

35 lines
679 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/xytovl/asus-numpad.git"
inherit git-r3
else
TAG="v${PV}"
SRC_URI="https://github.com/xytovl/${PN}/archive/${TAG}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
inherit linux-info meson
DESCRIPTION="User-space driver for Asus numpad"
HOMEPAGE="https://github.com/xytovl/asus-numpad"
LICENSE="GPL-3"
SLOT="0"
COMMON_DEPEND=">=dev-libs/libevdev-1.12.0"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"
BDEPEND=""
src_configure() {
meson_src_configure
}
src_install() {
meson_src_install
}