From: Wonyoung Choi Date: Tue, 8 Jan 2019 09:56:47 +0000 (+0900) Subject: [Tizen] Fix rpm spec file X-Git-Tag: submit/tizen/20190110.060252^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a27c16c6910d5e2065193e2a3280c3b425d2fefa;p=platform%2Fcore%2Fcsapi%2Fopentk.git [Tizen] Fix rpm spec file --- diff --git a/packaging/opentk.spec b/packaging/opentk.spec index 260c31cb..ceee8826 100644 --- a/packaging/opentk.spec +++ b/packaging/opentk.spec @@ -50,36 +50,22 @@ cp %{SOURCE1} . %install %define DOTNET_ASSEMBLY_PATH /usr/share/dotnet.tizen/framework -%define DOTNET_ASSEMBLY_DRAFT_PATH /usr/share/dotnet.tizen/framework/draft -mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_DRAFT_PATH} +mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_PATH} -install -p -m 644 artifacts/bin/OpenTK.dll %{buildroot}%{DOTNET_ASSEMBLY_DRAFT_PATH} -install -p -m 644 artifacts/bin/OpenTK.pdb %{buildroot}%{DOTNET_ASSEMBLY_DRAFT_PATH} +install -p -m 644 artifacts/bin/OpenTK.dll %{buildroot}%{DOTNET_ASSEMBLY_PATH} +install -p -m 644 artifacts/bin/OpenTK.pdb %{buildroot}%{DOTNET_ASSEMBLY_PATH} -mkdir -p %{buildroot}/nuget/draft -install -p -m 644 artifacts/OpenTK.*.nupkg %{buildroot}/nuget/draft - - -%post -rm -f %{DOTNET_ASSEMBLY_PATH}/OpenTK.dll -cp -a %{DOTNET_ASSEMBLY_DRAFT_PATH}/OpenTK.dll %{DOTNET_ASSEMBLY_PATH}/OpenTK.dll - -%post debug -rm -f %{DOTNET_ASSEMBLY_PATH}/OpenTK.pdb -cp -a %{DOTNET_ASSEMBLY_DRAFT_PATH}/OpenTK.pdb %{DOTNET_ASSEMBLY_PATH}/OpenTK.pdb - -%post nuget -rm -f /nuget/OpenTK.*.nupkg -cp -a /nuget/draft/OpenTK.*.nupkg /nuget/ +mkdir -p %{buildroot}/nuget +install -p -m 644 artifacts/OpenTK.*.nupkg %{buildroot}/nuget %files %license License.txt %manifest %{name}.manifest -%attr(644,root,root) %{DOTNET_ASSEMBLY_DRAFT_PATH}/*.dll +%attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.dll %files nuget -%attr(644,root,root) /nuget/draft/*.nupkg +%attr(644,root,root) /nuget/*.nupkg %files debug -%attr(644,root,root) %{DOTNET_ASSEMBLY_DRAFT_PATH}/*.pdb +%attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.pdb