diff options
author | Gerion Entrup <gerion.entrup@flump.de> | 2020-01-12 00:37:55 +0100 |
---|---|---|
committer | Gerion Entrup <gerion.entrup@flump.de> | 2020-01-12 01:00:46 +0100 |
commit | 4808bfb82247d6c4e017721cae9b54769b600cc2 (patch) | |
tree | 37892f244e16deb0d448b1d8297f2b51976fab6c /games-util | |
parent | dev-python/lifxlan: add 9999 package (diff) | |
download | gerislay-4808bfb82247d6c4e017721cae9b54769b600cc2.tar.gz gerislay-4808bfb82247d6c4e017721cae9b54769b600cc2.tar.bz2 gerislay-4808bfb82247d6c4e017721cae9b54769b600cc2.zip |
games-util/parsec: add
simply unpacks the debian package.
Signed-off-by: Gerion Entrup <gerion.entrup@flump.de>
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/parsec/Manifest | 2 | ||||
-rw-r--r-- | games-util/parsec/parsec-150.11.ebuild | 48 |
2 files changed, 50 insertions, 0 deletions
diff --git a/games-util/parsec/Manifest b/games-util/parsec/Manifest new file mode 100644 index 0000000..20c90ef --- /dev/null +++ b/games-util/parsec/Manifest @@ -0,0 +1,2 @@ +DIST parsec-linux.deb 3075182 BLAKE2B 837682acc759d76081a9287c96e6466feb6dcc3d960de32b4400c02e60e3db5eae44489bc2dbc6bf6b426156dfc9e35212dad9e9a74822e2e5ceb0782e4d9a05 SHA512 28a0be460faff03bf5aebe2307511c6b513919e3344f26e1bf5ef9470b5079cf33af876eb2114f57a553af6ff1b1cbb16fda7e10a13ab20964f1401f7c3abe98 +EBUILD parsec-150.11.ebuild 860 BLAKE2B 32844fd21502f8f7a51dbffcac7fe480986d6b3c4b1bb60602eb484cb38039f2456ee5e0534e91553ff97e3087cf13ee11cd873acd2b0667111f5787e8100f18 SHA512 50d04d65297da3e1808166c3065001aee8bd7eb69f21b5ddb3cccee948536db46d021659519b652380fb69d18fad0b1b49b0f8adbf0b7081383f883e99c3f536 diff --git a/games-util/parsec/parsec-150.11.ebuild b/games-util/parsec/parsec-150.11.ebuild new file mode 100644 index 0000000..1584d3d --- /dev/null +++ b/games-util/parsec/parsec-150.11.ebuild @@ -0,0 +1,48 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit unpacker + +DESCRIPTION="Play together in the world's largest arcade." +HOMEPAGE="https://parsecgaming.com/" +SRC_URI="https://builds.parsecgaming.com/package/parsec-linux.deb" + +LICENSE="" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-libs/expat + dev-libs/libbsd + media-libs/mesa + sys-devel/gcc[cxx] + sys-libs/glibc + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXdamage + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXxf86vm + x11-libs/libdrm + x11-libs/libxcb + x11-libs/libxcb + x11-libs/libxshmfence +" +RDEPEND="${DEPEND}" +BDEPEND="" + +S=${WORKDIR} + +QA_PREBUILT="usr/bin/parsecd usr/share/${PN}/skel/parsecd-150-11.so" + +src_unpack() { + unpack_deb ${A} +} + +src_install() { + cp -R usr/ "${D}/" || die "Could not copy." +} |