diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2020-03-09 10:51:41 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2020-03-09 10:51:57 -0500 |
commit | bf8426a1975ed0deae088ba579ece3d4e4e3012d (patch) | |
tree | 9bb14569791b0e9ce42f9bebd2c6420921e34126 /dev-libs/bemenu/bemenu-9999.ebuild | |
parent | app-crypt/gpgme: set IUSE="+cxx" (diff) | |
download | gentoo-bf8426a1975ed0deae088ba579ece3d4e4e3012d.tar.gz gentoo-bf8426a1975ed0deae088ba579ece3d4e4e3012d.tar.bz2 gentoo-bf8426a1975ed0deae088ba579ece3d4e4e3012d.zip |
dev-libs/bemenu: 0.3.0 bump
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'dev-libs/bemenu/bemenu-9999.ebuild')
-rw-r--r-- | dev-libs/bemenu/bemenu-9999.ebuild | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/dev-libs/bemenu/bemenu-9999.ebuild b/dev-libs/bemenu/bemenu-9999.ebuild index f9113da669b5..cc3b01f2040d 100644 --- a/dev-libs/bemenu/bemenu-9999.ebuild +++ b/dev-libs/bemenu/bemenu-9999.ebuild @@ -1,17 +1,22 @@ -# Copyright 2019 Gentoo Authors +# Copyright 2019-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit git-r3 cmake-utils +inherit cmake-utils DESCRIPTION="dmenu clone for wayland" HOMEPAGE="https://github.com/Cloudef/bemenu" -EGIT_REPO_URI="https://github.com/Cloudef/bemenu.git" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Cloudef/bemenu.git" +else + SRC_URI="https://github.com/Cloudef/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi LICENSE="GPL-3" SLOT="0" -KEYWORDS="" IUSE="doc ncurses wayland X" # Require at least one backend be built |