3

NetBeans 7.2 を使用して .deb パッケージをビルドしてからインストールすると、次のメッセージが表示されます。

The package is of bad quality

The installation of a package which violates the quality standards isn't allowed.
This could cause serious problems on your computer.  Please contact the person or
organisation who provided this package file and include the details beneath.

Details V
The package doesn't provide a valid Installed-Size control field.  See Debian Policy 5.6.20

[OK]  [Ignore and install]

ボタン[Ignore and install]のクリックは正常に機能し、アプリのインストール、実行/機能は良好です。Installed-Sizeどうにかして NetBeans 経由で設定を行う必要があると思います。パッケージをビルドするときにこれを自動的に行うだけではないことに驚きました。(私は x86/32 ビット、Ubuntu 10.04 LTS 用にビルドしています-最新の更新プログラム、Java JDK 7 / JavaFX 2.2 アプリケーションが必要な場合。)

build.xml で次のターゲットを使用しています。

<target name="-post-jfx-deploy">
    <fx:deploy width="${javafx.run.width}" height="${javafx.run.height}"
               nativeBundles="all"
               outdir="${basedir}/${dist.dir}" outfile="${application.title}">
        <fx:application name="${application.title}"
                        mainClass="${javafx.main.class}"/>
        <fx:resources>
            <fx:fileset dir="${basedir}/${dist.dir}" includes="*.jar"/>
        </fx:resources>
        <fx:info title="${application.title}" vendor="${application.vendor}"/>
    </fx:deploy>
</target>

これを修正するために NetBeans (7.2) で変更/設定する必要がある設定 (つまり、NetBeans を使用してビルドするときに Installed-Size コントロール フィールドを設定する方法) を教えてもらえますか? 誰かが私の前にこの問題を抱えていると仮定して、私は狩りをして狩りをしましたが、運はありません.

4

0 に答える 0