]> git.pld-linux.org Git - packages/clive.git/commitdiff
- initial
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 24 Jun 2007 20:46:43 +0000 (20:46 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    clive.spec -> 1.1

clive.spec [new file with mode: 0644]

diff --git a/clive.spec b/clive.spec
new file mode 100644 (file)
index 0000000..7652633
--- /dev/null
@@ -0,0 +1,48 @@
+Summary:       Video extraction utility for YouTube and Google Video
+Name:          clive
+Version:       0.2.0
+Release:       1
+License:       GPL
+Group:         Applications/System
+Source0:       http://dl.gna.org/clive/0.2/src/%{name}-%{version}.tar.gz
+# Source0-md5: c95efbae806eca1cce4120552bfdd1b8
+URL:           http://home.gna.org/clive/
+BuildRequires: python-devel >= 2.5
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+clive is a command line program that extracts videos from YouTube,
+Google Video and Dailymotion websites. It supports embedded video
+extraction, and can be used with an external encoder (e.g. ffmpeg) to
+re-encode the extracted videos to different video formats (e.g. avi,
+mpeg, flv).
+
+%prep
+%setup -q
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_mandir}/man1
+
+python setup.py install \
+        --optimize=2 \
+        --root=$RPM_BUILD_ROOT
+
+gzip -d man/*.gz
+install man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog README TODO
+%attr(755,root,root) %{_bindir}/*
+%dir %{py_sitescriptdir}/%{name}
+%{py_sitescriptdir}/%{name}/*.py[co]
+%{py_sitescriptdir}/*.egg-info
+%{_mandir}/man1/clive.1*
This page took 0.087462 seconds and 4 git commands to generate.