2013-07-04 22:48:15 +11:00
|
|
|
Summary: Small command-line program to download videos from YouTube
|
2012-02-02 01:55:34 +04:00
|
|
|
Name: youtube-dl
|
2014-05-07 01:33:05 +04:00
|
|
|
Version: 2014.05.05
|
2012-09-30 17:12:17 +02:00
|
|
|
Release: 1
|
2014-04-16 01:02:05 +11:00
|
|
|
License: Public Domain and GPLv2+
|
2012-02-02 01:55:34 +04:00
|
|
|
Group: Video
|
2013-07-04 22:48:15 +11:00
|
|
|
Url: http://rg3.github.com/youtube-dl/
|
2014-05-07 01:33:05 +04:00
|
|
|
Source0: https://yt-dl.org/downloads/%{version}/youtube-dl-%{version}.tar.gz
|
|
|
|
|
2014-04-16 01:02:05 +11:00
|
|
|
BuildRequires: help2man
|
|
|
|
BuildRequires: python
|
2014-05-07 01:33:05 +04:00
|
|
|
|
2012-02-02 01:55:34 +04:00
|
|
|
Requires: python
|
2014-05-07 01:33:05 +04:00
|
|
|
|
2014-04-16 01:02:05 +11:00
|
|
|
BuildArch: noarch
|
2012-02-02 01:55:34 +04:00
|
|
|
|
|
|
|
%description
|
|
|
|
Small command-line program to download videos from YouTube.
|
|
|
|
|
2014-04-16 01:02:05 +11:00
|
|
|
%files
|
|
|
|
%{_bindir}/%{name}
|
|
|
|
%{_mandir}/man1/%{name}.1.*
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
|
2012-02-02 01:55:34 +04:00
|
|
|
%prep
|
|
|
|
#nothing
|
|
|
|
|
|
|
|
%build
|
|
|
|
#nothing
|
|
|
|
|
|
|
|
%install
|
2013-07-04 22:48:15 +11:00
|
|
|
install -D -p -m 755 %{SOURCE0} %{buildroot}%{_bindir}/%{name}
|
2012-02-02 01:55:34 +04:00
|
|
|
|
2014-04-16 01:02:05 +11:00
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1/
|
|
|
|
help2man %{buildroot}%{_bindir}/%{name} > %{buildroot}%{_mandir}/man1/%{name}.1
|
2012-02-02 01:55:34 +04:00
|
|
|
|