Files
saundersp-overlay/app-misc/xdg-ninja/xdg-ninja-20251001.ebuild
2025-11-02 22:32:19 +01:00

28 lines
653 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION='A shell script which checks your $HOME for unwanted files and directories. '
HOMEPAGE='https://github.com/b3nj5m1n/xdg-ninja'
GIT_COMMIT='cb09ebd6479e276070a55fcffae9a5320bc52ed5'
SRC_URI="https://github.com/b3nj5m1n/${PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${GIT_COMMIT}"
LICENSE='MIT'
SLOT='0'
KEYWORDS='~amd64 ~x86'
IUSE='+glow'
DEPEND='
app-shells/bash
app-misc/jq
sys-apps/findutils
glow? ( app-misc/glow )
'
RDEPEND="${DEPEND}"
src_install() {
emake PREFIX=/usr DESTDIR="${D}" install
}