28 lines
		
	
	
		
			653 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			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='854929e5413e8d2cf84e90c5cc3ccb0188ab5d22'
 | 
						|
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
 | 
						|
}
 |