blob: bfb22a70cf770468b623a6e46e56e264157f4eaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils
DESCRIPTION="Pymaxe is an easy to use and open-source application which lets you download music or videos from some media-sharing websites, such as YouTube, Trilulilu or 4shared"
HOMEPAGE="http://pymaxe.com"
SRC_URI="http://pymaxe.com/files/latest/${PN}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="media-video/mplayer2
media-video/vlc
virtual/ffmpeg
dev-python/pygtk
media-libs/gst-plugins-ugly
media-plugins/gst-plugins-ffmpeg
media-plugins/gst-plugins-meta"
DEPEND=""
S="${WORKDIR}"
src_install() {
cd "${S}"
doins -r "${S}"/usr || die
fperms 755 /usr/bin/${PN} || die
}
|