From ceb1ed87cb98489788c93f645a4df678fbf620af Mon Sep 17 00:00:00 2001 From: Johannes Schwab Date: Sat, 5 Jul 2014 19:57:17 +0200 Subject: [PATCH] 0.9.22 --- net-p2p/twister/twister-0.9.22_beta.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 net-p2p/twister/twister-0.9.22_beta.ebuild diff --git a/net-p2p/twister/twister-0.9.22_beta.ebuild b/net-p2p/twister/twister-0.9.22_beta.ebuild new file mode 100644 index 0000000..d264a20 --- /dev/null +++ b/net-p2p/twister/twister-0.9.22_beta.ebuild @@ -0,0 +1,35 @@ +EAPI=5 +inherit eutils + +RELEASE="v0.9.22" + +DESCRIPTION="Peer-to-peer microblogging" +HOMEPAGE="http://twister.net.co/" +SRC_URI="https://github.com/miguelfreitas/twister-core/archive/${RELEASE}.tar.gz" +RESTRICT="mirror" + +LICENSE="MIT BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-libs/openssl + sys-libs/db + dev-libs/boost + net-libs/miniupnpc" + +DEPEND="${RDEPEND}" + +S="${WORKDIR}/twister-core-${RELEASE}" + +src_configure() { + ./bootstrap.sh +} + +src_compile() { + emake +} + +src_install() { + mkdir -p "${D}usr/bin/" + cp "${S}/twisterd" "${D}usr/bin/twisterd" +}