Files
guru/dev-util/deblob/deblob-0.1.ebuild
Haelwenn (lanodan) Monnier c8dd634f37 dev-util/deblob: add 0.1
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
2022-09-28 02:27:21 +02:00

27 lines
561 B
Bash

# Copyright 2021-2022 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
# Distributed under the terms of the GNU General Public License v2
EAPI=8
if [[ "$PV" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~lanodan/deblob"
else
SRC_URI="https://hacktivis.me/releases/${P}.tar.gz"
fi
DESCRIPTION="remove binary executables from a directory"
HOMEPAGE="https://git.sr.ht/~lanodan/deblob"
LICENSE="BSD"
SLOT="0"
DEPEND="dev-lang/hare:="
RDEPEND=""
# built by hare
QA_FLAGS_IGNORED="usr/bin/deblob"
src_install() {
PREFIX="/usr" default
}