Advertisement
Guest User

Untitled

a guest
Sep 24th, 2014
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. # Copyright 1999-2014 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Header: $
  4.  
  5. EAPI=5
  6.  
  7. PYTHON_COMPAT=( python2_7 )
  8.  
  9. inherit multilib python-r1
  10.  
  11. DESCRIPTION="ACE Stream Engine"
  12. HOMEPAGE="http://torrentstream.org/"
  13. SRC_URI="http://dl.acestream.org/ubuntu/14/${PN}_${PV}-b2_ubuntu_14.04_x86_64.tar.gz"
  14.  
  15. LICENSE="GPL-2 LGPL-2"
  16. SLOT="0"
  17. KEYWORDS="~amd64"
  18.  
  19. DEPEND="dev-python/m2crypto[${PYTHON_USEDEP}]
  20. dev-python/apsw[${PYTHON_USEDEP}]"
  21. RDEPEND="${DEPEND}"
  22.  
  23. S="${WORKDIR}"
  24. DESTDIR="/usr/share/${PN}"
  25. QA_PRESTRIPPED="usr/bin/acestreamengine
  26. usr/share/acestream/lib/acestreamengine/Core.so
  27. usr/share/acestream/lib/acestreamengine/node.so
  28. usr/share/acestream/lib/acestreamengine/pycompat.so
  29. usr/share/acestream/lib/acestreamengine/Transport.so
  30. usr/share/acestream/lib/acestreamengine/CoreApp.so
  31. usr/share/acestream/lib/acestreamengine/streamer.so"
  32.  
  33. src_prepare() {
  34. mv ${S}/${PN}_${PV}-b2_ubuntu_14.04_x86_64 ${S}/${PN}
  35. }
  36.  
  37. src_install() {
  38. dodir ${DESTDIR}
  39. cp -R "${S}/${PN}" "${DESTDIR}/" || die "Install failed!"
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement