約22,000件1ページ目

%ifarch 条件は、アーキテクチャー固有の spec ファイルのブロックを開始するために使用されます。この後に、アーキテクチャー指定子が続きます。これらは、それぞれ ...

%ifarch 条件は、アーキテクチャー固有の SPEC ファイルのブロックを開始するために使用されます。この後に、アーキテクチャー指定子が続きます。これらは、それぞれコンマ ...

2013/9/9 -The %files section is all the information that goes into the RPM database, and is created when you build the RPM so you won't be able to change those values.

%ifos is used to control RPM's spec file processing according to the build target operating system. %if can be used for various purposes. The test can be ...

2022/7/28 -Spec has its own syntax for conditionals, you need to use something like this: %if %{test} == "true" %attr(0644, user1,user1) /home/user1/file1.txt %endif

2015/9/18 -RPM では通常の方式として、 %if 表現などで複雑な構築方法を指定することができます: %if 0%(test "%something" = "enabled" && echo 1). ただし ...

The %ifarch conditional is used to begin a section of the spec file that is architecture-specific. It is followed by one or more architecture specifiers.

The %ifxxx conditionals are used to begin a section of the spec file that is specific to a particular architecture or operating system. They are followed by ...

2020/4/27 -On the spec level, it is used to break long %if statements into multiple lines. Inside macro definitions, it's the whole body that's broken down ...

2024/2/8 -The %if is a bit more flexible. We can use it to compare strings. %if "%_repository" == "openSUSE_Tumbleweed" [snip] %endif. First of ...