mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
Closes: https://bugs.gentoo.org/952916 Closes: https://bugs.gentoo.org/734202 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
24 lines
530 B
Bash
24 lines
530 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Safely remove spaces and strange characters from filenames"
|
|
HOMEPAGE="https://github.com/dharple/detox"
|
|
SRC_URI="https://github.com/dharple/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~hppa ~mips ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
BDEPEND="
|
|
app-alternatives/yacc
|
|
app-alternatives/lex
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|