25 lines
		
	
	
		
			524 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			524 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 2025 Gentoo Authors
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
EAPI=8
 | 
						|
 | 
						|
DESCRIPTION='A script to check `download.kiwix.org` for updates to your local ZIM library.'
 | 
						|
HOMEPAGE='https://github.com/jojo2357/kiwix-zim-updater'
 | 
						|
SRC_URI="https://github.com/jojo2357/${PN}/archive/v${PV}.tar.gz  -> ${P}.tar.gz"
 | 
						|
 | 
						|
LICENSE='GPL-2'
 | 
						|
SLOT='0'
 | 
						|
KEYWORDS='~amd64 ~x86'
 | 
						|
 | 
						|
DEPEND='
 | 
						|
	app-shells/bash
 | 
						|
	sys-apps/grep
 | 
						|
	net-misc/wget
 | 
						|
'
 | 
						|
RDEPEND="${DEPEND}"
 | 
						|
 | 
						|
src_install() {
 | 
						|
	mv "${PN}".sh "${PN}"
 | 
						|
	dobin "${PN}"
 | 
						|
}
 |