mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
31 lines
574 B
Bash
31 lines
574 B
Bash
# Copyright 2021-2022 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="remove binary executables from a directory"
|
|
HOMEPAGE="https://git.sr.ht/~lanodan/deblob"
|
|
EGIT_REPO_URI="https://git.sr.ht/~lanodan/deblob"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="
|
|
dev-lang/hare
|
|
test? ( app-text/mandoc )
|
|
"
|
|
RDEPEND=""
|
|
|
|
src_compile() {
|
|
default
|
|
mv "${P}" "${PN}" || die
|
|
}
|
|
|
|
src_install() {
|
|
emake install DESTDIR="${D}" PREFIX="/usr"
|
|
einstalldocs
|
|
}
|