diff --git a/app-emulation/windows95/Manifest b/app-emulation/windows95/Manifest new file mode 100644 index 0000000..844e417 --- /dev/null +++ b/app-emulation/windows95/Manifest @@ -0,0 +1 @@ +DIST windows95_2.3.0_amd64.deb 243307192 BLAKE2B 29050fda1d98a6ee4551f4b4049e800877588041b2df57a81050d78ab87dcf18b26079463b2e10d4ecac01a62f35c00e4fe389078fc8dac6216805c7773298be SHA512 99655bd7829cb6ae0e253d30848d5ddf1012d6d10a1f44fba594f8551f69f7dbfc9aeef1f31a84ff0d7c76009967e5dd6de3ee983bb5f92230366e5d1adfd4e0 diff --git a/app-emulation/windows95/metadata.xml b/app-emulation/windows95/metadata.xml new file mode 100644 index 0000000..949699f --- /dev/null +++ b/app-emulation/windows95/metadata.xml @@ -0,0 +1,9 @@ + + + + + + https://github.com/felixrieseberg/windows95 + felixrieseberg/windows95 + + diff --git a/app-emulation/windows95/windows95-2.3.0.ebuild b/app-emulation/windows95/windows95-2.3.0.ebuild new file mode 100644 index 0000000..dfc3bfb --- /dev/null +++ b/app-emulation/windows95/windows95-2.3.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop unpacker bintron + +DESCRIPTION="Windows 95, running in an Electron app" +HOMEPAGE="https://github.com/felixrieseberg/windows95" +SRC_URI="https://github.com/felixrieseberg/${PN}/releases/download/v${PV}/${PN}_${PV}_amd64.deb" +S="${WORKDIR}/usr/lib/${PN}" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="-* ~amd64" + +src_install() { + domenu ../../share/applications/${PN}.desktop + doicon ../../share/pixmaps/${PN}.png + + mkdir ./bin || die + ln -s ../${PN} ./bin/${PN} || die + + bintron_src_install +}