diff options
author | Sam James <sam@gentoo.org> | 2022-06-16 20:33:02 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 20:33:18 +0100 |
commit | 5b3f1c8440edbdb68956f557b13f8621a42b9107 (patch) | |
tree | 290e9d62b667d668b899731082274e70aed679b7 /net-libs/tox | |
parent | www-apps/ikiwiki: add 3.20200202.3 (diff) | |
download | gentoo-5b3f1c8440edbdb68956f557b13f8621a42b9107.tar.gz gentoo-5b3f1c8440edbdb68956f557b13f8621a42b9107.tar.bz2 gentoo-5b3f1c8440edbdb68956f557b13f8621a42b9107.zip |
net-libs/tox: fix S
Closes: https://bugs.gentoo.org/852632
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/tox')
-rw-r--r-- | net-libs/tox/tox-0.2.18.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net-libs/tox/tox-0.2.18.ebuild b/net-libs/tox/tox-0.2.18.ebuild index 19cb445abe6f..4296b1ad05d7 100644 --- a/net-libs/tox/tox-0.2.18.ebuild +++ b/net-libs/tox/tox-0.2.18.ebuild @@ -5,9 +5,10 @@ EAPI=8 inherit cmake systemd +MY_P=c-toxcore-${PV} DESCRIPTION="Encrypted P2P, messaging, and audio/video calling platform" HOMEPAGE="https://tox.chat https://github.com/TokTok/c-toxcore" -SRC_URI="https://github.com/TokTok/c-toxcore/releases/download/v${PV}/c-toxcore-${PV}.tar.gz" +SRC_URI="https://github.com/TokTok/c-toxcore/releases/download/v${PV}/${MY_P}.tar.gz" LICENSE="GPL-3+" SLOT="0/0.2" @@ -34,7 +35,7 @@ RDEPEND="${DEPEND} ) key-utils? ( || ( sys-devel/gcc[openmp] sys-devel/clang-runtime[openmp] ) )" -S="${WORKDIR}/${MY_P}" +S="${WORKDIR}"/${MY_P} src_prepare() { cmake_src_prepare |