Changes of Revision 37

handbrake.changes Changed
x
 
1
@@ -1,4 +1,9 @@
2
 -------------------------------------------------------------------
3
+Fri Feb 14 13:35:50 UTC 2020 - Hillwood Yang <hillwood@opensuse.org>
4
+
5
+- Fix a syntax mistake in spec.
6
+
7
+-------------------------------------------------------------------
8
 Tue Jan 07 17:44:23 UTC 2020 - enzokiel@kabelmail.de
9
 
10
 - update to version 1.3.1
11
handbrake.spec Changed
64
 
1
@@ -2,7 +2,7 @@
2
 # spec file for package handbrake
3
 #
4
 # Copyright (c) 2012 Pascal Bleser <pascal.bleser@opensuse.org>
5
-# Copyright (c) 2014 B1 Systems GmbH, Vobhurg, Germany
6
+# Copyright (c) 2020 B1 Systems GmbH, Vobhurg, Germany
7
 #
8
 # All modifications and additions to the file contributed by third parties
9
 # remain the property of their copyright owners, unless otherwise agreed
10
@@ -141,25 +141,24 @@
11
 sed -i -e "s/@BUILD@/$PKGDATE/" make/configure.py
12
 
13
 mkdir build
14
-./configure \
15
-    --force \
16
-    --build="$PWD/build" \
17
-    --prefix=%{_prefix} \
18
-    --strip="/bin/true" \
19
-    --optimize=speed \
20
-    --enable-fdk-aac \
21
+%configure --force \
22
+           --build="$PWD/build" \
23
+           --prefix=%{_prefix} \
24
+           --strip="/bin/true" \
25
+           --optimize=speed \
26
+           --enable-fdk-aac \
27
 %if %{with mfx}
28
-    --enable-qsv \
29
+           --enable-qsv \
30
 %endif
31
-%ifarch %{arm} \
32
-    --disable-numa \
33
+%ifarch %{arm}
34
+          --disable-numa \
35
 %endif
36
-    --enable-asm \
37
-    --debug=max
38
+          --enable-asm \
39
+          --debug=max
40
 
41
 pushd build
42
 make libhb/handbrake/project.h
43
-make %{?_smp_mflags}
44
+%make_build
45
 popd
46
 
47
 %install
48
@@ -177,11 +176,13 @@
49
 %fdupes %{buildroot}
50
 
51
 %files cli
52
-%doc COPYING NEWS.markdown THANKS.markdown
53
+%doc NEWS.markdown THANKS.markdown
54
+%license COPYING
55
 %{_bindir}/HandBrakeCLI
56
 
57
 %files gtk
58
-%doc COPYING NEWS.markdown THANKS.markdown
59
+%doc NEWS.markdown THANKS.markdown
60
+%license COPYING
61
 %{_bindir}/HandBrakeGUI
62
 %{_bindir}/ghb
63
 %{_datadir}/applications/fr.handbrake.ghb.desktop
64