Files
guru/media-video/ytarchive/ytarchive-0.5.0.ebuild
Alexey Sokolov 1b73481b0c media-video/ytarchive: add 0.5.0
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
2024-10-01 01:05:32 +01:00

29 lines
538 B
Bash

# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Youtube livestream downloader"
HOMEPAGE="https://github.com/Kethsar/ytarchive"
SRC_URI="
https://github.com/Kethsar/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://files.asokolov.org/gentoo/${P}-vendor.tar.xz
"
LICENSE="Apache-2.0 BSD MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="media-video/ffmpeg"
src_compile() {
ego build
}
src_install() {
dobin ytarchive
einstalldocs
}