alpha-quadrant/dev-util/typos/typos-1.27.3.ebuild

34 lines
559 B
Bash
Raw Permalink Normal View History

2024-09-16 11:00:17 +02:00
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Source code spell checker."
HOMEPAGE="https://github.com/crate-ci/typos"
SRC_URI="
amd64? ( https://github.com/crate-ci/${PN}/releases/download/v${PV}/${PN}-v${PV}-x86_64-unknown-linux-musl.tar.gz )
"
RESTRICT="mirror strip bindist"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
2024-09-24 16:02:37 +02:00
RDEPEND="${DEPEND}"
2024-09-16 11:00:17 +02:00
DOCS=( )
2024-09-24 16:02:37 +02:00
QA_FLAGS_IGNORED="usr/bin/${PN}"
2024-09-16 11:00:17 +02:00
pkg_setup(){
S="${WORKDIR}"
}
src_install(){
dobin typos
dodoc doc/*
}