You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
556 B
35 lines
556 B
EAPI=5 |
|
inherit eutils |
|
|
|
RELEASE="0.9.22" |
|
|
|
DESCRIPTION="Peer-to-peer microblogging" |
|
HOMEPAGE="http://twister.net.co/" |
|
SRC_URI="https://github.com/miguelfreitas/twister-core/archive/v${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" |
|
}
|
|
|