Changes of Revision 6
[-] | Changed | faac.spec |
x 1
2 %define libname %{lib}%{major} 3 4 Name: faac 5 -Summary: frontend for encoding MPEG2/4 AAC 6 +Summary: Frontend for encoding MPEG2/4 AAC 7 Summary(de): Frontend zum Encodieren von MPEG2/4 AAC 8 Version: 1.26 9 Release: 1 10
11 12 Patch0: faac_configure_in.patch 13 BuildRoot: %{_tmppath}/buildroot-%{name}-%{version} 14 -Prefix: %{_prefix} 15 Requires: %{libname} = %{version}-%{release} 16 Requires: libfaad2_0 >= 2.6 17 Requires: libmp4v2 18
19 20 %prep 21 %setup -qn faac 22 +chmod 644 COPYING ChangeLog TODO README AUTHORS NEWS 23 %patch0 24 25 %build 26
27 %__make DESTDIR=%{buildroot} install 28 29 %post 30 -%if 0%{?suse_version} 31 -%run_ldconfig 32 -%else 33 /sbin/ldconfig 34 -%endif 35 36 %postun 37 -%if 0%{?suse_version} 38 -%run_ldconfig 39 -%else 40 /sbin/ldconfig 41 -%endif 42 43 %clean 44 [ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot} 45 |