6.2.3. ネスト化
以下の例のように、オペランド自体をブール式として使用できます。
このような場合は、オペランドを括弧で囲む必要もあります。and と or 演算子を組み合わせて、括弧で囲った同じ 1 セットと同じ演算子を繰り返すことができます。
例6.2 ブール式として適用されるオペランドの使用例
Requires: (pkgA or pkgB or pkgC)
Requires: (pkgA or (pkgB and pkgC))
Supplements: (foo and (lang-support-cz or lang-support-all))
Requires: (pkgA with capB) or (pkgB without capA)
Supplements: ((driverA and driverA-tools) unless driverB)
Recommends: myPkg-langCZ and (font1-langCZ or font2-langCZ) if langsupportCZ