# Copyright 2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DESCRIPTION="Simple shell script to search for YouTube videos from your terminal" HOMEPAGE="https://github.com/Stan-breaks/ytsurf" SRC_URI="https://github.com/Stan-breaks/ytsurf/archive/refs/tags/V${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64" IUSE="rofi" #Required: bash, yt-dlp, jq, curl, mpv, fzf, chafa (for thumbnails) Optional: rofi DEPEND=" net-misc/yt-dlp app-misc/jq net-misc/curl media-video/mpv app-shells/fzf media-gfx/chafa rofi? ( x11-misc/rofi ) " RDEPEND="${DEPEND}" BDEPEND="" DOCS=( README.md ) src_install() { exeinto /usr/bin newexe ${PN}.sh ${PN} dodoc -r ${DOCS} }