Hi,
it tried to create a rpm package of tsMuxer, the rpm packaging it selve works,
but there is a problem with the binaries in the rpm package.
Code:
Name: tsMuxer
Version: 1.10.6
Release: 1%{?dist}
Summary: software utility to create TS and M2TS files
Group: Utility
License: GPL
URL: http://www.smlabs.net/tsmuxer_en.html
Source0: http://www.videohelp.com/download/tsMuxeR_1.10.6.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
software utility to create TS and M2TS files for IP broadcasting as well as for viewing
at hardware video players (i.e., Dune HD Ultra, Sony Playstation3 and others).
# necessary for 64bit platform
# yum install ld-linux.so.2 libfreetype.so.6
%prep
%setup -q -c -n %{name}-%{version}-%{release}
%build
%install
install -dm 755 %{buildroot}%{_bindir}
install -D -p -m 755 tsMuxeR %{buildroot}%{_bindir}
install -D -p -m 755 tsMuxerGUI %{buildroot}%{_bindir}
%files
%{_bindir}/tsMuxeR
%{_bindir}/tsMuxerGUI
file size of the binaries in the rpm package:
ll /usr/bin/tsMuxe*
-rwxr-xr-x 1 root root 208 9. Apr 15:16 /usr/bin/tsMuxeR
-rwxr-xr-x 1 root root 208 9. Apr 15:16 /usr/bin/tsMuxerGUI
file size of the binaries in the tar.gz:
ll tsMuxe*
-rwxr-xr-x 1 1000 1000 516424 11. Mai 2009 tsMuxeR
-rwxr-xr-x 1 1000 1000 5070636 11. Mai 2009 tsMuxerGUI
any hints ?