diff options
Diffstat (limited to 'dev-haskell/stack-bin/stack-bin-1.5.1.ebuild')
-rw-r--r-- | dev-haskell/stack-bin/stack-bin-1.5.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-haskell/stack-bin/stack-bin-1.5.1.ebuild b/dev-haskell/stack-bin/stack-bin-1.5.1.ebuild new file mode 100644 index 000000000000..624ecf2f7aa6 --- /dev/null +++ b/dev-haskell/stack-bin/stack-bin-1.5.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="The Haskell Tool Stack (Binary)" +HOMEPAGE="https://github.com/commercialhaskell/stack" + +uri() { + echo "https://github.com/commercialhaskell/stack/releases/download/v${PV}/stack-${PV}-linux-$1.tar.gz" +} + +SRC_URI=" + arm? ( $(uri arm) ) + x86? ( $(uri i386) ) + amd64? ( $(uri x86_64) ) +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~arm" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + sys-libs/zlib + dev-libs/gmp:0 +" + +S=${WORKDIR} + +QA_PREBUILT="/usr/bin/stack-bin" +QA_PRESTRIPPED="/usr/bin/stack-bin" + +src_prepare() { + default + + mv stack-${PV}-*/doc doc || die + mv stack-${PV}-*/stack stack-bin || die +} + +src_install() { + dodoc doc/* + dobin stack-bin +} |