summaryrefslogtreecommitdiff
path: root/libdvdcss
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2018-11-11 15:11:02 +0000
committerB Stack <bgstack15@gmail.com>2018-11-11 15:11:02 +0000
commitdb49815c7fd7c8a35b3dfd3e7582a09669e0be38 (patch)
tree0b6a10ddf47bc63b661e6d12d0eaaa0bf1922250 /libdvdcss
parentMerge branch 'waterfox-bump' into 'master' (diff)
downloadstackrpms-db49815c7fd7c8a35b3dfd3e7582a09669e0be38.tar.gz
stackrpms-db49815c7fd7c8a35b3dfd3e7582a09669e0be38.tar.bz2
stackrpms-db49815c7fd7c8a35b3dfd3e7582a09669e0be38.zip
Libdvdcss
Diffstat (limited to 'libdvdcss')
-rw-r--r--libdvdcss/libdvdcss.spec95
1 files changed, 95 insertions, 0 deletions
diff --git a/libdvdcss/libdvdcss.spec b/libdvdcss/libdvdcss.spec
new file mode 100644
index 0000000..540433a
--- /dev/null
+++ b/libdvdcss/libdvdcss.spec
@@ -0,0 +1,95 @@
+Summary: A portable abstraction library for DVD decryption
+Name: libdvdcss
+Version: 1.4.2
+Release: 2
+License: GPLv2+
+URL: https://www.videolan.org/%{name}/
+#Source: http://www.videolan.org/pub/videolan/%%{name}/%%{version}/%%{name}-%%{version}.tar.bz2
+# Use the code release because www.videolan.org does not provide https for the tarball download which is required by rpkg on copr.
+Source: https://code.videolan.org/videolan/%{name}/-/archive/%{version}/%{name}-%{version}.tar.bz2
+BuildRequires: doxygen
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRequires: libtool
+
+Requires(post): ldconfig
+
+%description
+This is a portable abstraction library for DVD decryption which is used by
+the VideoLAN project, a full MPEG2 client/server solution. You will need
+to install this package in order to have encrypted DVD playback with the
+VideoLAN client and the Xine navigation plugin.
+
+%package devel
+Summary: Header files and development libraries for %{name}
+Requires: %{name} = %{version}-%{release}
+Requires: pkgconfig
+
+%description devel
+This package contains the header files and development libraries
+for %{name}. If you like to develop programs using %{name},
+you will need to install %{name}-devel.
+
+%prep
+%setup -q
+
+%build
+autoreconf -i
+%configure --disable-static
+%make_build
+
+%install
+%make_install
+rm -fr %{buildroot}%{_docdir}/%{name} \
+ %{buildroot}%{_libdir}/*.la
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%license COPYING
+%doc AUTHORS ChangeLog README NEWS
+%{_libdir}/%{name}.so.*
+
+%files devel
+%doc doc/html
+%{_includedir}/dvdcss
+%{_libdir}/%{name}.so
+%{_libdir}/pkgconfig/%{name}.pc
+
+%changelog
+* Sun Nov 11 2018 B Stack <bgstack15@gmail.com> - 1.4.2-2
+- Repackaged for stackrpms
+
+* Tue Apr 24 2018 Simone Caronni <negativo17@gmail.com> - 1.4.2-1
+- Update to 1.4.2.
+
+* Wed Jan 24 2018 Simone Caronni <negativo17@gmail.com> - 1.4.1-1
+- Update to 1.4.1.
+
+* Thu Jan 28 2016 Simone Caronni <negativo17@gmail.com> - 1.4.0-1
+- Udpate to 1.4.0.
+
+* Sat Oct 31 2015 Simone Caronni <negativo17@gmail.com> - 1.3.99-1
+- Update to 1.3.99.
+
+* Fri Oct 24 2014 Simone Caronni <negativo17@gmail.com> - 1.3.0-1
+- Update to 1.3.0.
+- Remove RHEL 5 obsolete tags from SPEC file.
+
+* Fri Nov 15 2013 Simone Caronni <negativo17@gmail.com> - 1.2.13-2
+- Run ldconfig in scriptlets.
+
+* Tue May 07 2013 Simone Caronni <negativo17@gmail.com> - 1.2.13-1
+- Update to 1.2.13.
+- Add doxygen docs in devel subpackage.
+
+* Mon Mar 12 2012 Remi Collet <RPMS@famillecollet.com> - 1.2.12-1
+- Update to 1.2.12
+
+* Sat Feb 18 2012 Remi Collet <RPMS@famillecollet.com> - 1.2.11-2
+- If unsure, assume the drive is of RPC-I type
+
+* Tue Nov 22 2011 Remi Collet <RPMS@famillecollet.com> - 1.2.11-1
+- Update to 1.2.11
bgstack15