diff options
Diffstat (limited to 'dev-libs/liberasurecode/liberasurecode-1.0.7.ebuild')
-rw-r--r-- | dev-libs/liberasurecode/liberasurecode-1.0.7.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-libs/liberasurecode/liberasurecode-1.0.7.ebuild b/dev-libs/liberasurecode/liberasurecode-1.0.7.ebuild new file mode 100644 index 000000000000..bf3d29bd6f9d --- /dev/null +++ b/dev-libs/liberasurecode/liberasurecode-1.0.7.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/liberasurecode/liberasurecode-1.0.7.ebuild,v 1.1 2015/04/30 19:34:46 prometheanfire Exp $ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="Erasure Code API library written in C with pluggable Erasure Code backends." +HOMEPAGE="https://bitbucket.org/tsg-/liberasurecode/overview" +SRC_URI="https://bitbucket.org/tsg-/${PN}/get/v${PV}.tar.gz -> ${P}.tar.gz" +CUSTOM_VERSION="a380246762c1" +S="${WORKDIR}/tsg--${PN}-${CUSTOM_VERSION}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="sys-devel/autoconf" + +src_prepare() { + autoreconf -i -v || die "autoconf failed" +} + +src_configure() { + econf +} + +src_install() { + emake DESTDIR="${D}" install +} |