-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST reicast-8.1.tar.gz 6923991 BLAKE2B c2e75ff5ce1cb3a108f4902559a26a11ee6df5d5757dce6cdf736012013f31dacec3f2dd036388716624b525d7711b0101ce3c7a77f9569ce429cb72464b5677 SHA512 036f549d87c3376ee2862278c0e6644d8978dc077d796a7ebb2868e1cbef955f71fdd439cdb15077042791ecb75b810d7a9ff4d3a12c9a5d77e7d1bc8cdab2d0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Haelwenn (lanodan) Monnier</name> | ||
</maintainer> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2019 Haelwenn (lanodan) Monnier <[email protected]> | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DESCRIPTION="A Dreamcast Emulator" | ||
HOMEPAGE="http://reicast.com/" | ||
LICENSE="GPL-2" | ||
SRC_URI="https://github.com/reicast/reicast-emulator/archive/r${PV}.tar.gz -> ${P}.tar.gz" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
DEPEND=" | ||
media-libs/alsa-lib | ||
media-libs/mesa[egl,gles2] | ||
dev-python/python-evdev | ||
" | ||
|
||
S="${WORKDIR}/reicast-emulator-r${PV}/shell/linux" | ||
|
||
src_install() { | ||
emake DESTDIR="${D}" PREFIX="/usr" install | ||
} |