Files
guru/media-video/ytarchive/ytarchive-0.4.0.ebuild
Alexey Sokolov f5aface804 media-video/ytarchive: add 0.4.0
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
2023-11-14 23:23:02 +00:00

29 lines
522 B
Bash

# Copyright 2023 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="BSD MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="media-video/ffmpeg"
src_compile() {
ego build
}
src_install() {
dobin ytarchive
einstalldocs
}