Updated musikcube.spec to ensure libmusikcore.so is executable so the tooling detects it as a bundled library dependency.

This commit is contained in:
casey langen 2018-02-01 21:56:03 -08:00
parent c2891dda34
commit ee3dfe9725

View File

@ -1,6 +1,6 @@
%define name musikcube %define name musikcube
%define build_timestamp %{lua: print(os.date("%Y%m%d"))} %define build_timestamp %{lua: print(os.date("%Y%m%d"))}
%define version 0.40.0 %define version 0.40.0-1
Name: %{name} Name: %{name}
Version: %{version} Version: %{version}
Release: %{dist} Release: %{dist}
@ -25,6 +25,7 @@ make -j2
%install %install
make install DESTDIR=%{buildroot} make install DESTDIR=%{buildroot}
find %buildroot -type f \( -name '*.so' -o -name '*.so.*' \) -exec chmod 755 {} +
%clean %clean
rm -rf %{buildroot} rm -rf %{buildroot}