Changes of Revision 16
x265.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Tue Dec 20 12:02:33 UTC 2016 - scarabeus@opensuse.org
4
+
5
+- Switch to use cmake macros
6
+
7
+-------------------------------------------------------------------
8
Thu Sep 29 12:26:59 UTC 2016 - idonmez@suse.com
9
10
- Update to version 2.1
11
x265.spec
Changed
61
1
2
Patch0: arm.patch
3
BuildRequires: gcc gcc-c++
4
BuildRequires: cmake >= 2.8.8
5
-# for openSUSE 13.1 only libnuma-devel = 2.0.8 is available, but version 2.0.9 or higher is required
6
-# build against version 2.0.8 failes with "error: 'numa_bitmask_weight' was not declared in this scope"
7
-%if ! ( 0%{?suse_version} == 1310 )
8
-%ifarch x86_64
9
BuildRequires: libnuma-devel >= 2.0.9
10
-%endif
11
-%endif
12
BuildRequires: pkg-config
13
BuildRequires: yasm >= 1.2.0
14
BuildRoot: %{_tmppath}/%{name}-%{version}-build
15
16
streams.
17
18
%prep
19
-%setup -q -n x265_%{version}
20
+%setup -q -n %{name}_%{version}
21
%patch0 -p1
22
23
-%define FAKE_BUILDDATE %(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e %%Y')
24
sed -i -e "s/0.0/%{soname}.0/g" source/cmake/version.cmake
25
26
27
%build
28
-export CXXFLAGS="%{optflags}"
29
-export CFLAGS="%{optflags}"
30
-
31
-cd build/linux
32
-cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
33
- -DLIB_INSTALL_DIR=%{_lib} \
34
- -DENABLE_TESTS=ON \
35
- -G "Unix Makefiles" \
36
- ../../source
37
-
38
-make %{?_smp_mflags} VERBOSE=1
39
+%if 0%{?suse_version} < 1330
40
+cd source
41
+%else
42
+%define __builddir ./source/build
43
+%define __sourcedir ./source
44
+%endif
45
+%cmake -DENABLE_TESTS=ON
46
+make %{?_smp_mflags}
47
48
%install
49
-cd build/linux
50
-%makeinstall
51
-
52
+%if 0%{?suse_version} < 1330
53
+cd source
54
+%endif
55
+%cmake_install
56
rm -f %{buildroot}%{_libdir}/%{libname}.a
57
-
58
echo "%{libname}-%{soname}" > %{_sourcedir}/baselibs.conf
59
60
%post -n %{libsoname} -p /sbin/ldconfig
61