diff options
author | Karel Kočí <cynerd@email.cz> | 2020-11-19 08:16:05 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-11-19 08:16:05 +0100 |
commit | fe039a7941417e0a7828602c63852dd72f6c5116 (patch) | |
tree | 88009e2bd75bdd331c1f232827d345401d96f08b /net-im/rambox/rambox-0.7.7-r1.ebuild | |
parent | 38afb48b1205dfdfb66b6057ef5d84f4c1f3fe70 (diff) | |
download | gentoo-personal-overlay-fe039a7941417e0a7828602c63852dd72f6c5116.tar.gz gentoo-personal-overlay-fe039a7941417e0a7828602c63852dd72f6c5116.tar.bz2 gentoo-personal-overlay-fe039a7941417e0a7828602c63852dd72f6c5116.zip |
net-im/rambox: fix invalid install path
Diffstat (limited to 'net-im/rambox/rambox-0.7.7-r1.ebuild')
-rw-r--r-- | net-im/rambox/rambox-0.7.7-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-im/rambox/rambox-0.7.7-r1.ebuild b/net-im/rambox/rambox-0.7.7-r1.ebuild index b8331b2..db70261 100644 --- a/net-im/rambox/rambox-0.7.7-r1.ebuild +++ b/net-im/rambox/rambox-0.7.7-r1.ebuild @@ -3,15 +3,15 @@ EAPI=7 DESCRIPTION="Messaging and emailing app that combines common web applications into one" HOMEPAGE="https://github.com/ramboxapp/community-edition" SRC_URI="https://github.com/ramboxapp/community-edition/releases/download/${PV}/Rambox-${PV}-linux-x64.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/Rambox-${PV}-linux-x64" +S="${WORKDIR}" LICENSE="GPL-3.0+" SLOT="0" KEYWORDS="amd64" src_install() { - dodir /opt/rambox - cp -R "${S}/" "${D}/opt/rambox" || die "Install failed!" + dodir /opt + cp -R "${S}/Rambox-${PV}-linux-x64/" "${D}/opt/rambox/" || die "Install failed!" dodir /usr/bin ln -s /opt/rambox/rambox "${D}/usr/bin/rambox" } |