mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 20:18:41 -04:00
Manually went through some entries for `pkgcheck scan -c VariableOrderCheck`. Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
25 lines
612 B
Bash
25 lines
612 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Pandoc filter for cross-references"
|
|
HOMEPAGE="https://github.com/lierdakil/pandoc-crossref"
|
|
SRC_URI="https://github.com/lierdakil/pandoc-crossref/releases/download/v${PV}/pandoc-crossref-Linux.tar.xz -> ${P}.tar.xz"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
|
|
RDEPEND="
|
|
|| ( =app-text/pandoc-bin-3.1.12.2 =app-text/pandoc-3.1.12.2 )
|
|
!dev-haskell/pandoc-crossref
|
|
"
|
|
|
|
src_install() {
|
|
exeinto /usr/bin
|
|
newexe pandoc-crossref pandoc-crossref
|
|
newman pandoc-crossref.1
|
|
}
|