mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 04:53:07 -04:00
and other QA fixes, || die etc Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
32 lines
574 B
Bash
32 lines
574 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Identify and manipulate duplicate files"
|
|
HOMEPAGE="https://www.jodybruchon.com/software/#jdupes"
|
|
SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-test.sh.patch"
|
|
)
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
src_prepare(){
|
|
default
|
|
chmod +x test.sh || die
|
|
}
|
|
|
|
src_configure() {
|
|
sed -in 's/local//' Makefile || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake
|
|
}
|