blob: 65c3270c3468ead1f081c30342bcbf9eec1a1c6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 desktop toolchain-funcs
DESCRIPTION="A simple tool to generate a grid of thumbnails from a video file."
HOMEPAGE="https://github.com/prokoma/thumbnail-grid"
EGIT_REPO_URI="https://github.com/prokoma/thumbnail-grid"
LICENSE="MIT"
SLOT="0"
PATCHES=(
"$FILESDIR"/quiet.diff
)
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
emake
}
src_install() {
dobin "$PN"
}
|