app-arch/fuse-archive: fix #947648

Closes: https://bugs.gentoo.org/
Signed-off-by: NRK <nrk@disroot.org>
This commit is contained in:
NRK
2025-01-06 23:17:00 +00:00
parent 7bc770d025
commit 27e9cedb1a

View File

@@ -29,10 +29,9 @@ DEPEND="
BDEPEND="virtual/pkgconfig"
RDEPEND="${DEPEND}"
# TODO(NRK): enable tests. requires python.
# also takes a lot of disk space (and time) by generating big.zip.
src_test() {
:
src_configure() {
sed -i 's|-O2||g' Makefile || die "sed failed"
sed -i 's|-O0 -g||g' Makefile || die "sed failed"
}
src_compile() {
@@ -49,3 +48,9 @@ src_install() {
dobin out/fuse-archive
doman fuse-archive.1
}
# TODO(NRK): enable tests. requires python.
# also takes a lot of disk space (and time) by generating big.zip.
src_test() {
:
}