95 lines
2.3 KiB
RPMSpec
95 lines
2.3 KiB
RPMSpec
Name: aces_container
|
|
Version: 1.0
|
|
Release: 6%{?dist}
|
|
Summary: ACES Container Reference
|
|
|
|
License: AMPAS BSD
|
|
URL: https://github.com/ampas/aces_container
|
|
Source0: https://github.com/ampas/aces_container/archive/v%{version}.tar.gz
|
|
Patch0: Aces_container-fixup.patch
|
|
|
|
BuildRequires: cmake
|
|
|
|
%description
|
|
This folder contains a reference implementation for an ACES container
|
|
file writer intended to be used with the Academy Color Encoding
|
|
System (ACES). The resulting file is compliant with the ACES container
|
|
specification (SMPTE S2065-4). However, there are a few things that are
|
|
not demonstrated by this reference implementation.
|
|
|
|
Stereo channels
|
|
EndOfFileFiller
|
|
Arbitrary attributes and naming validations
|
|
half type attributes
|
|
keycode value validations
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
Requires: cmake
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1 -b .fixup
|
|
|
|
|
|
%build
|
|
mkdir build ; cd build
|
|
%{cmake} \
|
|
..
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
cd build
|
|
%make_install
|
|
|
|
|
|
# remote noinstall style cmake file
|
|
rm %{buildroot}/%{_libdir}/CMake/AcesContainer/AcesContainerTargets-noconfig.cmake
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
%doc README.md LICENSE
|
|
%{_libdir}/libAcesContainer.so.*
|
|
|
|
%files devel
|
|
%dir %{_includedir}/aces/
|
|
%{_includedir}/aces/*.h
|
|
%dir %{_libdir}/CMake/AcesContainer
|
|
%{_libdir}/CMake/AcesContainer/*.cmake
|
|
%{_libdir}/libAcesContainer.so
|
|
%{_libdir}/pkgconfig/AcesContainer.pc
|
|
|
|
|
|
%changelog
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0-4
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
* Tue Dec 02 2014 Nicolas Chauvet <kwizart@gmail.com> - 1.0-3
|
|
- Fixup includedir for cmake
|
|
|
|
* Mon Aug 25 2014 Nicolas Chauvet <kwizart@gmail.com> - 1.0-2
|
|
- Add Requires cmake for -devel
|
|
|
|
* Sun Apr 13 2014 Nicolas Chauvet <kwizart@gmail.com> - 1.0-1
|
|
- Initial spec file
|
|
|