blob: f20824fa2dbfb860420c6a354681c1d83bef8bbd (
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
|
EAPI=8
inherit git-r3
DESCRIPTION="Image previews for lf file manager"
HOMEPAGE="https://github.com/NikitaIvanovV/ctpv"
EGIT_REPO_URI="https://github.com/NikitaIvanovV/ctpv"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64"
RDEPEND="media-gfx/imagemagick
app-misc/lf
dev-libs/openssl"
PATCHES=(
"$FILESDIR"/thumbnail-grid.diff
)
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
}
pkg_postinst() {
elog "Check homepage for optional programs to allow greater file preview support."
}
|