blob: d11006e5b38ea009d373ba40a78a3d5fe97004d4 (
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
30
31
32
|
# Copyright 2022-2025 Liguros Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
HOMEPAGE="https://www.flameeyes.eu/projects/unpaper"
DESCRIPTION="Post-processor for scanned and photocopied book pages"
KEYWORDS="amd64 ~arm64 x86"
SRC_URI="https://github.com/unpaper/unpaper/archive/refs/tags/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE="test"
RDEPEND="
>=media-video/ffmpeg-2:0=
dev-python/sphinx
"
DEPEND="
dev-libs/libxslt
app-text/docbook-xsl-ns-stylesheets
virtual/pkgconfig
${RDEPEND}
"
S=${WORKDIR}/${PN}-${P}
RESTRICT="test"
src_prepare() {
default
}
|