diff options
Diffstat (limited to 'sci-libs/arrayfire/arrayfire-9999.ebuild')
-rw-r--r-- | sci-libs/arrayfire/arrayfire-9999.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sci-libs/arrayfire/arrayfire-9999.ebuild b/sci-libs/arrayfire/arrayfire-9999.ebuild index 107af240e..352a81483 100644 --- a/sci-libs/arrayfire/arrayfire-9999.ebuild +++ b/sci-libs/arrayfire/arrayfire-9999.ebuild @@ -10,9 +10,13 @@ GTEST_PV="1.7.0" DESCRIPTION="A general purpose GPU library." HOMEPAGE="http://www.arrayfire.com/" -EGIT_REPO_URI="https://github.com/arrayfire/arrayfire.git" +EGIT_REPO_URI="https://github.com/arrayfire/arrayfire.git git://github.com/arrayfire/arrayfire.git" SRC_URI="test? ( https://googletest.googlecode.com/files/gtest-${GTEST_PV}.zip )" -KEYWORDS="~amd64" +KEYWORDS="" +if [[ ${PV} == "0.9999" ]] ; then + # the remote HEAD points to devel, but we want to pull the master instead + EGIT_BRANCH="master" +fi LICENSE="BSD" SLOT="0" @@ -78,5 +82,5 @@ src_configure() { src_install() { cmake-utils_src_install - dobin "bin2cpp" + dobin "${BUILD_DIR}/bin2cpp" } |