[packages/rav1e] - new

qboosh qboosh at pld-linux.org
Mon Jul 27 06:28:20 CEST 2020


commit 7d9459ec8717213386acdd65e616b038660e0b38
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date:   Mon Jul 27 06:29:59 2020 +0200

    - new

 rav1e.spec | 136 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 136 insertions(+)
---
diff --git a/rav1e.spec b/rav1e.spec
new file mode 100644
index 0000000..d7a0afb
--- /dev/null
+++ b/rav1e.spec
@@ -0,0 +1,136 @@
+Summary:	The fastest and safest AV1 encoder
+Summary(pl.UTF-8):	Najszybszy i najbezpieczniejszy koder AV1
+Name:		rav1e
+Version:	0.3.3
+Release:	1
+License:	BSD
+Group:		Libraries
+#Source0Download: https://github.com/xiph/rav1e/releases
+Source0:	https://github.com/xiph/rav1e/archive/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5:	4a9f8e2f9d25f516bdbec94235370edf
+# cd %{name}-%{version}
+# cargo vendor
+# cd ..
+# tar cJf rav1e-crates-%{version}.tar.xz %{name}-%{version}/{vendor,Cargo.lock}
+Source1:	%{name}-crates-%{version}.tar.xz
+# Source1-md5:	152ace1ef7b4c31a60b659d6379da146
+URL:		https://github.com/xiph/rav1e
+BuildRequires:	cargo
+BuildRequires:	cargo-c
+%ifarch %{x8664}
+BuildRequires:	nasm
+%endif
+BuildRequires:	rust
+# for tests only?
+#BuildRequires:	aom-devel
+#BuildRequires:	dav1d-devel
+ExclusiveArch:	%{ix86} %{x8664} aarch64
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+rav1e is an AV1 video encoder. It is designed to eventually cover all
+use cases, though in its current form it is most suitable for cases
+where libaom (the reference encoder) is too slow.
+
+%description -l pl.UTF-8
+rav1e to koder obrazu AV1. Jest projektowany, aby ewentualnie pokrywać
+wszystkie przypadki użycia, ale w obecnej postaci nadaje się najlepiej
+tam, gdzie libaom (koder referencyjny) jest zbyt wolny.
+
+%package libs
+Summary:	Shared rav1e library
+Summary(pl.UTF-8):	Biblioteka współdzielona rav1e
+Group:		Libraries
+
+%description libs
+Shared rav1e library.
+
+%description libs -l pl.UTF-8
+Biblioteka współdzielona rav1e.
+
+%package devel
+Summary:	Header files for rav1e library
+Summary(pl.UTF-8):	Pliki nagłówkowe biblioteki rav1e
+Group:		Development/Libraries
+Requires:	%{name}-libs = %{version}-%{release}
+
+%description devel
+Header files for rav1e library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki rav1e.
+
+%package static
+Summary:	Static rav1e library
+Summary(pl.UTF-8):	Statyczna biblioteka rav1e
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{release}
+
+%description static
+Static rav1e library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka rav1e.
+
+%prep
+%setup -q -b1
+
+# use our offline registry
+export CARGO_HOME="$(pwd)/.cargo"
+
+mkdir -p "$CARGO_HOME"
+cat >.cargo/config <<EOF
+[source.crates-io]
+replace-with = 'vendored-sources'
+
+[source.vendored-sources]
+directory = '$PWD/vendor'
+EOF
+
+%build
+export CARGO_HOME="$(pwd)/.cargo"
+
+cargo -v build --release --frozen
+
+cargo -v cbuild --release --frozen
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+cargo -v install --frozen --path . --root $RPM_BUILD_ROOT%{_prefix}
+
+cargo -v cinstall --frozen --release \
+	--destdir $RPM_BUILD_ROOT \
+	--prefix %{_prefix} \
+	--bindir %{_bindir} \
+	--includedir %{_includedir} \
+	--libdir %{_libdir}
+
+%{__rm} $RPM_BUILD_ROOT%{_prefix}/.crates*
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	libs -p /sbin/ldconfig
+%postun	libs -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc LICENSE PATENTS README.md
+%attr(755,root,root) %{_bindir}/rav1e
+
+%files libs
+%defattr(644,root,root,755)
+%doc LICENSE PATENTS README.md doc/GLOSSARY.md
+%attr(755,root,root) %{_libdir}/librav1e.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/librav1e.so.0
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/librav1e.so
+%{_includedir}/rav1e
+%{_pkgconfigdir}/rav1e.pc
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/librav1e.a
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rav1e.git/commitdiff/7d9459ec8717213386acdd65e616b038660e0b38



More information about the pld-cvs-commit mailing list