blob: 48c8f80e045d9cce5168497fa1aa65b7103531c9 (
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
33
34
35
36
37
38
39
40
41
42
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A lightweight feed reader with ncurses user interface inspired by Newsboat."
HOMEPAGE="https://codeberg.org/newsraft/newsraft"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/newsraft/newsraft.git"
else
SRC_URI="https://codeberg.org/newsraft/newsraft/archive/${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}"
fi
LICENSE="ISC"
SLOT="0"
DEPEND="
dev-db/sqlite:3
dev-libs/expat
dev-libs/gumbo:=
dev-libs/yajl:=
net-misc/curl
sys-libs/ncurses:=
"
RDEPEND="${DEPEND}"
BDEPEND="
app-text/scdoc
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}/newsraft-0.25-hardcoded-CFLAGS-LDFLAGS.patch"
)
src_install() {
emake PREFIX="/usr" DESTDIR="${D}" install
einstalldocs
}
|