summaryrefslogtreecommitdiff
path: root/app-emulation/wine-mono/wine-mono-8.0.1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/wine-mono/wine-mono-8.0.1.ebuild')
-rw-r--r--app-emulation/wine-mono/wine-mono-8.0.1.ebuild26
1 files changed, 0 insertions, 26 deletions
diff --git a/app-emulation/wine-mono/wine-mono-8.0.1.ebuild b/app-emulation/wine-mono/wine-mono-8.0.1.ebuild
deleted file mode 100644
index 27069cdc43d3..000000000000
--- a/app-emulation/wine-mono/wine-mono-8.0.1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Replacement for the .NET runtime and class libraries in Wine"
-HOMEPAGE="https://wiki.winehq.org/Mono"
-SRC_URI="
- shared? ( https://github.com/madewokherd/wine-mono/releases/download/${P}/${P}-x86.tar.xz )
- !shared? ( https://github.com/madewokherd/wine-mono/releases/download/${P}/${P}-x86.msi )"
-S="${WORKDIR}"
-
-LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT MPL-1.1"
-SLOT="${PV}"
-KEYWORDS="amd64 x86"
-IUSE="+shared"
-
-src_install() {
- insinto /usr/share/wine/mono
-
- if use shared; then
- doins -r ${P}
- else
- doins "${DISTDIR}"/${P}-x86.msi
- fi
-}