gentoo-overlay/dev-dotnet/nuget/nuget-6.6.1.ebuild
Manuel Friedli 819dbb3025
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Add latest nuget version.
2023-06-16 22:34:26 +02:00

29 lines
597 B
Bash

# Copyright 1999-2023 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# See https://dist.nuget.org/index.json for available versions
DESCRIPTION="Nuget - .NET Package Manager"
HOMEPAGE="https://www.nuget.org/"
SRC_URI="https://dist.nuget.org/win-x86-commandline/v${PV}/nuget.exe -> ${P}.exe"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/mono"
S="${WORKDIR}"
src_compile() { :; }
src_install() {
exeinto "/usr/bin"
doexe "${FILESDIR}/nuget"
insinto "/usr/lib/${PN}"
newins "${DISTDIR}/${P}.exe" "nuget.exe"
}