mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
QA complains about impl function declarations in configure, skip the check. Closes: https://bugs.gentoo.org/901447 Signed-off-by: Joe Kappus <joe@wt.gd>
22 lines
442 B
Bash
22 lines
442 B
Bash
# Copyright 1999-2022 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# : $
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="USB Floppy Disk formatting tool"
|
|
HOMEPAGE="https://github.com/tedigh/ufiformat"
|
|
SRC_URI="https://github.com/tedigh/$PN/archive/refs/tags/v$PV.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="sys-fs/e2fsprogs"
|
|
DEPEND=${RDEPEND}
|
|
|
|
QA_CONFIG_IMPL_DECL_SKIP=(
|
|
makedev
|
|
)
|